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

github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/myclabs/deep-copy/fixtures/f007/FooDateInterval.php')
-rw-r--r--vendor/myclabs/deep-copy/fixtures/f007/FooDateInterval.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/myclabs/deep-copy/fixtures/f007/FooDateInterval.php b/vendor/myclabs/deep-copy/fixtures/f007/FooDateInterval.php
new file mode 100644
index 0000000..e16bc6a
--- /dev/null
+++ b/vendor/myclabs/deep-copy/fixtures/f007/FooDateInterval.php
@@ -0,0 +1,15 @@
+<?php
+
+namespace DeepCopy\f007;
+
+use DateInterval;
+
+class FooDateInterval extends DateInterval
+{
+ public $cloned = false;
+
+ public function __clone()
+ {
+ $this->cloned = true;
+ }
+}