Completed
Push — master ( 097db7...6a86d4 )
by Bill
9s
created
src/SyncerCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function handle(array $arguments)
67 67
     {
68
-        if (! $this->argumentsValid($arguments)) {
68
+        if (!$this->argumentsValid($arguments)) {
69 69
             echo $this->error;
70 70
             return;
71 71
         }
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 
193 193
         if (isset($arguments[1])) {
194 194
             $this->folder = $arguments[1];
195
-            if (! file_exists($this->folder)) {
195
+            if (!file_exists($this->folder)) {
196 196
                 $this->error = "Error: Folder {$this->folder} does not exist.";
197 197
                 return false;
198 198
             }
Please login to merge, or discard this patch.