Completed
Push — master ( 856b62...40300a )
by Sergii
07:49
created
src/Commands/DownWAMP.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
 
71 71
             if (count($content)) {
72 72
                 foreach ($content as $pid) {
73
-                    $pid = (int)trim($pid);
73
+                    $pid = (int) trim($pid);
74 74
 
75 75
                     if ($pid > 0) {
76 76
                         exec('kill '.$pid);
Please login to merge, or discard this patch.
src/Commands/RunCommandInBackground.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     {
60 60
         exec($this->composeForRunInBackground(), $out, $pid);
61 61
 
62
-        return count($out) ? (int)$out[0] : null;
62
+        return count($out) ? (int) $out[0] : null;
63 63
     }
64 64
 
65 65
     /**
@@ -81,12 +81,12 @@  discard block
 block discarded – undo
81 81
     {
82 82
         $parts = [];
83 83
         if (!empty($this->before)) {
84
-            $parts[] = (string)$this->before;
84
+            $parts[] = (string) $this->before;
85 85
         }
86 86
         $parts[] = 'cd '.base_path();
87 87
         $parts[] = "{$this->phpBinary} {$this->getArtisan()} {$this->command}";
88 88
         if (!empty($this->after)) {
89
-            $parts[] = (string)$this->after;
89
+            $parts[] = (string) $this->after;
90 90
         }
91 91
 
92 92
         return implode(' && ', $parts);
Please login to merge, or discard this patch.
src/Routers/RouterTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
         $callback = explode('&', $callback);
204 204
         $self = $this;
205 205
 
206
-        return function () use ($callback, $namespace, $self) {
206
+        return function() use ($callback, $namespace, $self) {
207 207
             if (count($callback) === 1) {
208 208
                 return call_user_func_array([$this, $callback[0]], func_get_args());
209 209
             }
Please login to merge, or discard this patch.