16 lines
200 B
PHP
16 lines
200 B
PHP
<?php
|
|
|
|
namespace DeepCopy\f007;
|
|
|
|
use DateInterval;
|
|
|
|
class FooDateInterval extends DateInterval
|
|
{
|
|
public $cloned = false;
|
|
|
|
public function __clone()
|
|
{
|
|
$this->cloned = true;
|
|
}
|
|
}
|