Completed
Push — master ( 78645e...b60cd7 )
by Pablo
02:10
created
src/IgnoreFiles/Infrastructure/Disk/FileReader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function read()
26 26
     {
27 27
         if (false === $this->fileExists()) {
28
-            return [];
28
+            return [ ];
29 29
         }
30 30
 
31 31
         return $this->getFileContent();
Please login to merge, or discard this patch.
src/IgnoreFiles/Service/TrimContentTransformer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
      */
12 12
     public static function trim(array $contentData)
13 13
     {
14
-        $data = [];
14
+        $data = [ ];
15 15
 
16 16
         foreach ($contentData as $item) {
17
-            $data[] = trim($item);
17
+            $data[ ] = trim($item);
18 18
         }
19 19
 
20 20
         return $data;
Please login to merge, or discard this patch.