Completed
Push — master ( f0aaa6...630207 )
by
unknown
21:37 queued 21:15
created
src/Configuration/Operation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 
77 77
         // create an empty collection if no plugins has been specified
78 78
         if ($this->plugins === null) {
79
-            $this->plugins= new ArrayCollection();
79
+            $this->plugins = new ArrayCollection();
80 80
         }
81 81
     }
82 82
 
Please login to merge, or discard this patch.
src/Parsers/JsonParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
         }
139 139
 
140 140
         // sort the files ascending
141
-        usort($files, function ($a, $b) {
141
+        usort($files, function($a, $b) {
142 142
             return strcmp($a, $b);
143 143
         });
144 144
 
Please login to merge, or discard this patch.
src/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1371,7 +1371,7 @@
 block discarded – undo
1371 1371
     {
1372 1372
 
1373 1373
         // flatten the array, because we don't handle the entity type code yet
1374
-        $finderMappings = array_reduce($this->finderMappings, function ($carry, $item) {
1374
+        $finderMappings = array_reduce($this->finderMappings, function($carry, $item) {
1375 1375
             return array_replace($carry, $item);
1376 1376
         }, array());
1377 1377
 
Please login to merge, or discard this patch.