Test Failed
Push — master ( d80a49...911abc )
by Alain
03:26
created
src/View/Support/AbstractFinder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      */
151 151
     protected function initializeFindables($arguments = null)
152 152
     {
153
-        $this->findables = $this->findables->map(function ($findable) use ($arguments) {
153
+        $this->findables = $this->findables->map(function($findable) use ($arguments) {
154 154
             return $this->initializeFindable($findable, $arguments);
155 155
         });
156 156
     }
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
      */
216 216
     protected function instantiateFindableFromString($string, $arguments = [])
217 217
     {
218
-        return new $string(...(array)$arguments);
218
+        return new $string(...(array) $arguments);
219 219
     }
220 220
 
221 221
     /**
@@ -230,6 +230,6 @@  discard block
 block discarded – undo
230 230
      */
231 231
     protected function instantiateFindableFromCallable($callable, $arguments = [])
232 232
     {
233
-        return $callable(...(array)$arguments);
233
+        return $callable(...(array) $arguments);
234 234
     }
235 235
 }
Please login to merge, or discard this patch.