GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( fbf98a...c5e9e2 )
by Hong
02:08
created
src/Phossa2/Config/Loader/ConfigFileLoader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -169,9 +169,9 @@  discard block
 block discarded – undo
169 169
     )/*# : array */ {
170 170
         $files = [];
171 171
         $group = '' === $group ? '*' : $group;
172
-        foreach($this->buildSearchDirs($environment) as $dir) {
172
+        foreach ($this->buildSearchDirs($environment) as $dir) {
173 173
             $file = $dir . $group . '.' . $this->file_type;
174
-            $files = array_merge( $files, glob($file));
174
+            $files = array_merge($files, glob($file));
175 175
         }
176 176
         return $files;
177 177
     }
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
             $subs = preg_split('/[\/\\\]/', trim($environment, '/\\'), 0,
194 194
                 \PREG_SPLIT_NO_EMPTY);
195 195
 
196
-            foreach($subs as $dir) {
196
+            foreach ($subs as $dir) {
197 197
                 $path = $path . $dir . \DIRECTORY_SEPARATOR;
198 198
                 $subdirs[] = $path;
199 199
             }
Please login to merge, or discard this patch.