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

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

namespace DeepCopy\f007;

use DateInterval;

class FooDateInterval extends DateInterval
{
    public $cloned = false;

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