normalizeEscapeShellArg() 공개 정적인 메소드

public static normalizeEscapeShellArg ( string $command ) : string
$command string
리턴 string
 protected function assertCliCommandEquals($expected, $actual)
 {
     if (strpos(PHP_OS, 'WIN') !== false) {
         $expected = Helper::normalizeEscapeShellArg($expected);
     }
     $this->assertEquals($expected, $actual);
 }