Completed
Push — V6 ( c7e19b...7af288 )
by Georges
02:23
created
src/autoload.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@  discard block
 block discarded – undo
18 18
 /**
19 19
  * Register Autoload
20 20
  */
21
-spl_autoload_register(function ($entity) {
21
+spl_autoload_register(function($entity) {
22 22
     $module = explode('\\', $entity, 2);
23
-    if (!in_array($module[ 0 ], ['phpFastCache', 'Psr'])) {
23
+    if (!in_array($module[0], ['phpFastCache', 'Psr'])) {
24 24
         /**
25 25
          * Not a part of phpFastCache file
26 26
          * then we return here.
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
         if (is_readable($path)) {
33 33
             require_once $path;
34
-        }else{
34
+        } else {
35 35
             trigger_error('Cannot locate the Psr/Cache files', E_USER_ERROR);
36 36
         }
37 37
         return;
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
         if (is_readable($path)) {
42 42
             require_once $path;
43
-        }else{
43
+        } else {
44 44
             trigger_error('Cannot locate the Psr/SimpleCache files', E_USER_ERROR);
45 45
         }
46 46
         return;
Please login to merge, or discard this patch.