We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7d829ae + 99fb0fe commit 9373d4cCopy full SHA for 9373d4c
generated/funchand.php
@@ -5,12 +5,14 @@
5
use Safe\Exceptions\FunchandException;
6
7
/**
8
- * Creates an anonymous function from the parameters passed, and
9
- * returns a unique name for it.
+ * Creates a function dynamically from the parameters passed, and returns a unique name for it.
10
*
11
- * @param string $args The function arguments.
+ * @param string $args The function arguments, as a single comma-separated string.
12
* @param string $code The function code.
13
* @return string Returns a unique function name as a string.
+ * Note that the name contains a non-printable character ("\0"),
14
+ * so care should be taken when printing the name or incorporating it in any other
15
+ * string.
16
* @throws FunchandException
17
18
*/
0 commit comments