Completed
Push — develop ( 52317d...fc22ae )
by Davide
03:43
created
src/AbstractConfig.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
         // Look for the key, creating nested keys if needed
97 97
         while ($part = array_shift($segs)) {
98
-            if($cacheKey != ''){
98
+            if ($cacheKey != '') {
99 99
                 $cacheKey .= '.';
100 100
             }
101 101
             $cacheKey .= $part;
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             $root = &$root[$part];
106 106
 
107 107
             //Unset all old nested cache
108
-            if(isset($this->cache[$cacheKey])){
108
+            if (isset($this->cache[$cacheKey])) {
109 109
                 unset($this->cache[$cacheKey]);
110 110
             }
111 111
         }
Please login to merge, or discard this patch.