@@ -57,12 +57,12 @@ discard block |
||
| 57 | 57 | try { |
| 58 | 58 | $file = array_pop($files); |
| 59 | 59 | |
| 60 | - if (! is_readable($file)) { |
|
| 60 | + if ( ! is_readable($file)) { |
|
| 61 | 61 | continue; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | $config = static::createFromArray( |
| 65 | - static::getFromCache($file, function ($file) { |
|
| 65 | + static::getFromCache($file, function($file) { |
|
| 66 | 66 | return Loader::load($file); |
| 67 | 67 | }) |
| 68 | 68 | ); |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | */ |
| 140 | 140 | protected static function getFromCache($identifier, $fallback) |
| 141 | 141 | { |
| 142 | - if (! array_key_exists($identifier, static::$configFilesCache)) { |
|
| 142 | + if ( ! array_key_exists($identifier, static::$configFilesCache)) { |
|
| 143 | 143 | static::$configFilesCache[$identifier] = is_callable($fallback) |
| 144 | 144 | ? $fallback($identifier) |
| 145 | 145 | : $fallback; |