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 186ffde commit 583959dCopy full SHA for 583959d
1 file changed
src/functions.php
@@ -8,7 +8,8 @@
8
if (!\function_exists(__NAMESPACE__ . '\\escapeArgument')) {
9
if (IS_WINDOWS) {
10
/**
11
- * Escapes the command argument for safe inclusion into a Windows command string.
+ * Escapes the command argument for safe inclusion into a Windows command string used with proc_open()
12
+ * and the option bypass_shell=true.
13
*/
14
function escapeArgument(string $arg): string
15
{
@@ -18,7 +19,7 @@ function escapeArgument(string $arg): string
18
19
}
20
} else {
21
- * Escapes the command argument for safe inclusion into a Posix shell command string.
22
+ * Escapes the command argument for safe inclusion into a Posix shell command string used with proc_open().
23
24
25
0 commit comments