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/f004/UnclonableItem.php')
-rw-r--r--vendor/myclabs/deep-copy/fixtures/f004/UnclonableItem.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/myclabs/deep-copy/fixtures/f004/UnclonableItem.php b/vendor/myclabs/deep-copy/fixtures/f004/UnclonableItem.php
new file mode 100644
index 0000000..82c6c67
--- /dev/null
+++ b/vendor/myclabs/deep-copy/fixtures/f004/UnclonableItem.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace DeepCopy\f004;
+
+use BadMethodCallException;
+
+class UnclonableItem
+{
+ private function __clone()
+ {
+ throw new BadMethodCallException('Unsupported call.');
+ }
+}