Passed
Pull Request — master (#248)
by Fabien
02:25
created
src/Result/ResultsRendererFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Churn\Result;
4 4
 
Please login to merge, or discard this patch.
src/Result/Render/ResultsRendererInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Churn\Result\Render;
4 4
 
Please login to merge, or discard this patch.
src/File/FileFinder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Churn\File;
4 4
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     {
61 61
         $directoryIterator = new RecursiveDirectoryIterator($path);
62 62
         foreach (new RecursiveIteratorIterator($directoryIterator) as $file) {
63
-            if (! in_array($file->getExtension(), $this->fileExtensions)) {
63
+            if (!in_array($file->getExtension(), $this->fileExtensions)) {
64 64
                 continue;
65 65
             }
66 66
 
Please login to merge, or discard this patch.
src/File/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Churn\File;
4 4
 
Please login to merge, or discard this patch.