mirror of
https://github.com/t404owo/t404null.git
synced 2025-12-12 18:08:47 +00:00
16 lines
200 B
PHP
16 lines
200 B
PHP
<?php
|
|
|
|
namespace DeepCopy\f007;
|
|
|
|
use DateTimeZone;
|
|
|
|
class FooDateTimeZone extends DateTimeZone
|
|
{
|
|
public $cloned = false;
|
|
|
|
public function __clone()
|
|
{
|
|
$this->cloned = true;
|
|
}
|
|
}
|