| @@ -19,10 +19,10 @@ | ||
| 19 | 19 |  { | 
| 20 | 20 | public static function exec($route, array $args, $wait = false) | 
| 21 | 21 |      { | 
| 22 | - $path = dirname(__DIR__) . '/bin/hidev'; | |
| 22 | + $path = dirname(__DIR__).'/bin/hidev'; | |
| 23 | 23 | $command = "$path $route"; | 
| 24 | 24 |          foreach ($args as $arg) { | 
| 25 | - $command .= ' ' . escapeshellarg($arg); | |
| 25 | + $command .= ' '.escapeshellarg($arg); | |
| 26 | 26 | } | 
| 27 | 27 | $amp = $wait ? '' : '&'; | 
| 28 | 28 | |