diff options
Diffstat (limited to 'buildscripts/PhpDocumentor/phpDocumentor/clone5.inc.php')
-rw-r--r-- | buildscripts/PhpDocumentor/phpDocumentor/clone5.inc.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/clone5.inc.php b/buildscripts/PhpDocumentor/phpDocumentor/clone5.inc.php new file mode 100644 index 00000000..20919a99 --- /dev/null +++ b/buildscripts/PhpDocumentor/phpDocumentor/clone5.inc.php @@ -0,0 +1,14 @@ +<?php
+
+/**
+ * Clone an object in PHP 5
+ * @param object
+ * @return object
+ * @ignore
+ */
+function phpDocumentor_clone($obj)
+{
+ return clone $obj;
+}
+
+?>
\ No newline at end of file |