Passed
Push — master ( 5d8f62...e2a5d9 )
by Mariano
02:35
created
src/Extension/PhiremockProcess.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,19 +47,19 @@
 block discarded – undo
47 47
      */
48 48
     public function start($ip, $port, $path, $logsPath, $debug)
49 49
     {
50
-        $phiremockPath = is_file($path) ? $path : $path . DIRECTORY_SEPARATOR . 'phiremock';
50
+        $phiremockPath = is_file($path) ? $path : $path.DIRECTORY_SEPARATOR.'phiremock';
51 51
         if ($debug) {
52
-            echo 'Running ' . $this->getCommandPrefix()
52
+            echo 'Running '.$this->getCommandPrefix()
53 53
                 . "{$phiremockPath} -i {$ip} -p {$port}"
54
-                . ($debug? ' -d' : '') . PHP_EOL;
54
+                . ($debug ? ' -d' : '').PHP_EOL;
55 55
         }
56 56
         $this->process = new Process(
57 57
             $this->getCommandPrefix()
58 58
             . "{$phiremockPath} -i {$ip} -p {$port}"
59 59
             . ($debug ? ' -d' : '')
60 60
         );
61
-        $logFile = $logsPath . DIRECTORY_SEPARATOR . self::LOG_FILE_NAME;
62
-        $this->process->start(function ($type, $buffer) use ($logFile) {
61
+        $logFile = $logsPath.DIRECTORY_SEPARATOR.self::LOG_FILE_NAME;
62
+        $this->process->start(function($type, $buffer) use ($logFile) {
63 63
             file_put_contents($logFile, $buffer, FILE_APPEND);
64 64
         });
65 65
         $this->process->setEnhanceSigchildCompatibility(true);
Please login to merge, or discard this patch.