Passed
Push — master ( 745243...19f840 )
by Alain
02:58
created
src/ConfigFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,12 +57,12 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.