Completed
Push — master ( 148650...0fb3ed )
by Bill
10s
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.
test/FileSystemTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 abstract class FileSystemTest extends PHPUnit_Framework_TestCase
4 4
 {
5 5
 
6
-	protected $path = __DIR__ . '/temp';
6
+	protected $path = __DIR__.'/temp';
7 7
 
8 8
     protected function createTempFolder()
9 9
     {
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
 
18 18
             // var_dump(glob($this->path . '/' . '{,.}[!.,!..]*',GLOB_MARK|GLOB_BRACE));exit;
19
-            array_map('unlink', glob($this->path . '/' . '{,.}[!.,!..]*',GLOB_MARK|GLOB_BRACE));
19
+            array_map('unlink', glob($this->path.'/'.'{,.}[!.,!..]*', GLOB_MARK | GLOB_BRACE));
20 20
             rmdir($this->path);
21 21
         }
22 22
     }
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.