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
Pull Request — master (#43)
by Marc
04:38
created
src/Commands/AbstractCommand.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,12 +125,14 @@
 block discarded – undo
125 125
         if (
126 126
             !file_exists($this->getHomeDir() . DIRECTORY_SEPARATOR . 'parameters.yml')
127 127
             AND !file_exists(getcwd() . DIRECTORY_SEPARATOR . '.chapiconfig')
128
-        ) // one file have to exist
128
+        ) {
129
+            // one file have to exist
129 130
         {
130 131
             $this->oOutput->writeln(sprintf(
131 132
                 '<error>%s</error>',
132 133
                 'No parameter file found. Please run "configure" command for initial setup or add a local `.chapiconfig` to your working directory.'
133 134
             ));
135
+        }
134 136
             return false;
135 137
         }
136 138
 
Please login to merge, or discard this patch.