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
Branch master (cbb83d)
by Hong
03:27
created
src/Phossa2/Config/Config.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -246,7 +246,7 @@
 block discarded – undo
246 246
     /**
247 247
      * Get group name
248 248
      *
249
-     * @param  string $name
249
+     * @param string $key
250 250
      * @return string
251 251
      * @access protected
252 252
      */
Please login to merge, or discard this patch.
src/Phossa2/Config/Loader/ConfigFileLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         $environment
117 117
     )/*# : array */ {
118 118
         $files = [];
119
-        foreach($this->buildSearchDirs($environment) as $dir) {
119
+        foreach ($this->buildSearchDirs($environment) as $dir) {
120 120
             // append trailing '/'
121 121
             $dir .= \DIRECTORY_SEPARATOR;
122 122
 
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
             $subs = preg_split('/[\/\\\]/', trim($environment, '/\\'), 0,
205 205
                 \PREG_SPLIT_NO_EMPTY);
206 206
 
207
-            foreach($subs as $dir) {
207
+            foreach ($subs as $dir) {
208 208
                 $path = $path . \DIRECTORY_SEPARATOR . $dir;
209 209
                 $subdirs[] = $path;
210 210
             }
Please login to merge, or discard this patch.