Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FooDateTimeZone.php « f007 « fixtures « deep-copy « myclabs « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f4e61fe96c62831e48f2a3fd3059fa7eabff1d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace DeepCopy\f007;

use DateTimeZone;

class FooDateTimeZone extends DateTimeZone
{
    public $cloned = false;

    public function __clone()
    {
        $this->cloned = true;
    }
}