|
@@ -184,7 +184,7 @@ discard block |
|
|
block discarded – undo |
|
184
|
184
|
*/ |
|
185
|
185
|
public function load($fileName, $refresh = false) |
|
186
|
186
|
{ |
|
187
|
|
- $cachePath = $this->getCacheDirectory() . DIRECTORY_SEPARATOR . $fileName . '.php'; |
|
|
187
|
+ $cachePath = $this->getCacheDirectory().DIRECTORY_SEPARATOR.$fileName.'.php'; |
|
188
|
188
|
$cache = new ConfigCache($cachePath, $this->debug); |
|
189
|
189
|
|
|
190
|
190
|
if ($refresh || !$cache->isFresh()) { |
|
@@ -220,7 +220,7 @@ discard block |
|
|
block discarded – undo |
|
220
|
220
|
$tree = $configuration->getConfigTreeBuilder()->buildTree(); |
|
221
|
221
|
$name = $tree->getName(); |
|
222
|
222
|
|
|
223
|
|
- $cachePath = $this->getCacheDirectory() . DIRECTORY_SEPARATOR . $fileName . '.config.' . $name . '.php'; |
|
|
223
|
+ $cachePath = $this->getCacheDirectory().DIRECTORY_SEPARATOR.$fileName.'.config.'.$name.'.php'; |
|
224
|
224
|
$cache = new ConfigCache($cachePath, $this->debug); |
|
225
|
225
|
|
|
226
|
226
|
if ($refresh || !$cache->isFresh()) { |
Please login to merge, or discard this patch.