mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-16 18:54:02 +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;
|
|
}
|
|
}
|