We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfcddfd commit 5d1f7f8Copy full SHA for 5d1f7f8
functions.php
@@ -0,0 +1,11 @@
1
+<?php
2
+
3
+/**
4
+ * An additional function which allows a non OOP initialization of the Set object
5
+ *
6
+ * @param mixed ...$args Values to initially add to the Set object
7
+ */
8
+function set()
9
+{
10
+ return ( new \ReflectionClass('Set') )->newInstanceArgs( func_get_args() );
11
+}
0 commit comments