Completed
Push — V6 ( 52abd1...beccf6 )
by Georges
02:21
created
src/autoload.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
  * Register PhpFastCache
26 26
  * embedded-libraries Autoload
27 27
  */
28
-spl_autoload_register(function ($entity) {
28
+spl_autoload_register(function($entity) {
29 29
     /**
30 30
      * Attempting to load Psr\Cache
31 31
      */
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
         if (is_readable($path)) {
36 36
             require_once $path;
37
-        }else{
37
+        } else {
38 38
             trigger_error('Cannot locate the Psr/Cache files', E_USER_ERROR);
39 39
         }
40 40
         return;
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
         if (is_readable($path)) {
50 50
             require_once $path;
51
-        }else{
51
+        } else {
52 52
             trigger_error('Cannot locate the Psr/SimpleCache files', E_USER_ERROR);
53 53
         }
54 54
         return;
Please login to merge, or discard this patch.