Completed
Push — master ( 4695ab...73566d )
by Julián
02:31
created
src/AbstractManagerBuilder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
         $annotationFiles = (array) $this->getOption('annotation_files');
232 232
         array_walk(
233 233
             $annotationFiles,
234
-            function ($file) {
234
+            function($file) {
235 235
                 if (!file_exists($file)) {
236 236
                     throw new \RuntimeException(sprintf('"%s" file does not exist', $file));
237 237
                 }
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
         $annotationLoaders = (array) $this->getOption('annotation_autoloaders');
246 246
         array_walk(
247 247
             $annotationLoaders,
248
-            function ($autoLoader) {
248
+            function($autoLoader) {
249 249
                 AnnotationRegistry::registerLoader($autoLoader);
250 250
             }
251 251
         );
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
 
267 267
         return array_filter(
268 268
             $namespaces,
269
-            function ($namespace) {
269
+            function($namespace) {
270 270
                 return is_string($namespace);
271 271
             },
272 272
             ARRAY_FILTER_USE_KEY
Please login to merge, or discard this patch.