Completed
Push — master ( 0be8ab...b61691 )
by Bill
9s
created
src/Collectors/FileCollector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
                 continue;
38 38
             }
39 39
 
40
-            if (! preg_match("/{$this->filePattern}/", $file->getFilename())) {
40
+            if (!preg_match("/{$this->filePattern}/", $file->getFilename())) {
41 41
                 continue;
42 42
             }
43 43
 
Please login to merge, or discard this patch.
src/Finders/EnvFileFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function find($file)
20 20
     {
21
-        if (! file_exists($file)) {
21
+        if (!file_exists($file)) {
22 22
             return [];
23 23
         }
24 24
 
Please login to merge, or discard this patch.
src/Finders/PhpFileFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function find($file)
20 20
     {
21
-        if (! file_exists($file)) {
21
+        if (!file_exists($file)) {
22 22
             return [];
23 23
         }
24 24
 
Please login to merge, or discard this patch.
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.