@@ -131,7 +131,7 @@ |
||
131 | 131 | if (null !== $function && $this->hasExpiredCache($path, $expires)) { |
132 | 132 | $data = call_user_func($function); |
133 | 133 | $this->storeData($path, $data, $transform); |
134 | - } else { |
|
134 | + }else { |
|
135 | 135 | $data = $this->getDataFromFile($path, $transform); |
136 | 136 | } |
137 | 137 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | $translations = array(); |
22 | 22 | if (file_exists($absoluteTranslationFileName)) { |
23 | 23 | @include($absoluteTranslationFileName); |
24 | - } else { |
|
24 | + }else { |
|
25 | 25 | Cache::getInstance()->storeData($absoluteTranslationFileName, "<?php \$translations = array();\n", Cache::TEXT, TRUE); |
26 | 26 | } |
27 | 27 |