Home
last modified time | relevance | path

Searched refs:escapeArgument (Results 1 – 6 of 6) sorted by relevance

/plugin/jplayer/vendor/symfony/process/
H A DCHANGELOG.md15 * deprecated the `ProcessUtils::escapeArgument()` method
38 * added ProcessUtils::escapeArgument() to fix the bug in escapeshellarg() function on Windows
H A DProcessUtils.php41 public static function escapeArgument($argument) function in Symfony\\Component\\Process\\ProcessUtils
H A DProcess.php1709 private function escapeArgument($argument) function in Symfony\\Component\\Process\\Process
/plugin/jplayer/vendor/symfony/process/Tests/
H A DProcessUtilsTest.php27 $this->assertSame($result, ProcessUtils::escapeArgument($argument));
/plugin/combo/vendor/symfony/process/
H A DCHANGELOG.md54 * the `ProcessUtils::escapeArgument()` method has been removed
74 * deprecated the `ProcessUtils::escapeArgument()` method
97 * added ProcessUtils::escapeArgument() to fix the bug in escapeshellarg() function on Windows
H A DProcess.php316 $commandline = implode(' ', array_map([$this, 'escapeArgument'], $commandline));
989 return \is_array($this->commandline) ? implode(' ', array_map([$this, 'escapeArgument'], $this->commandline)) : $this->commandline;
1615 private function escapeArgument(?string $argument): string function in Symfony\\Component\\Process\\Process
1641 return $this->escapeArgument($env[$matches[1]]);