normalizeEscapeShellArg() public static method

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