Passed
Push — 0.7.0 ( 91f75a...a316e5 )
by Alexander
09:55
created
src/components/Autoloader/Autoloader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
         // Now prepend another loader for the files in our class map
317 317
         $config = is_array($this->classmap) ? $this->classmap : [];
318 318
         
319
-        spl_autoload_register(function ($class) use ($config) {
319
+        spl_autoload_register(function($class) use ($config) {
320 320
 
321 321
             if (empty($config[$class])) {
322 322
                 return false;
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
         // Autoloading for the files helpers, hooks or functions
332 332
         $files = is_array($this->includeFiles) ? $this->includeFiles : [];
333 333
 
334
-        spl_autoload_register(function () use ($files) {
334
+        spl_autoload_register(function() use ($files) {
335 335
 
336 336
             foreach ($files as $fileIdentifier => $file) {
337 337
                 $this->getAutoloaderFileRequire($fileIdentifier, $file);                
Please login to merge, or discard this patch.