Passed
Push — master ( 50f52a...30592e )
by Mauro
02:43
created
src/DIC.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
                 mkdir(self::getCacheDir(), 0755, true);
43 43
             }
44 44
 
45
-            file_put_contents($sha1file, '<?php return unserialize(\''. serialize($cachedMap) .'\');' . PHP_EOL);
45
+            file_put_contents($sha1file, '<?php return unserialize(\'' . serialize($cachedMap) . '\');' . PHP_EOL);
46 46
         }
47 47
     }
48 48
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     private static function getCacheDir()
68 68
     {
69
-        return __DIR__.'/../_cache/';
69
+        return __DIR__ . '/../_cache/';
70 70
     }
71 71
 
72 72
     /**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     private static function getCacheFilePath()
76 76
     {
77
-        return self::getCacheDir() . sha1_file(self::$filename) .'.php';
77
+        return self::getCacheDir() . sha1_file(self::$filename) . '.php';
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.