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 — 3.0 ( 06e746...c52ac9 )
by Vermeulen
04:55
created
src/class/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
          * End "en" (preference 0.4/1)
200 200
          **/
201 201
         
202
-        $acceptLanguage  = $this->serverValue('HTTP_ACCEPT_LANGUAGE');
202
+        $acceptLanguage = $this->serverValue('HTTP_ACCEPT_LANGUAGE');
203 203
         if (empty($acceptLanguage)) {
204 204
             $this->lang = '';
205 205
             return;
Please login to merge, or discard this patch.
src/class/Application.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     /**
174 174
      * Getter to access to the errors instance
175 175
      * 
176
-     * @return \BFW\Errors
176
+     * @return Core\Errors
177 177
      */
178 178
     public function getErrors()
179 179
     {
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
     /**
226 226
      * Getter to access to the options system
227 227
      * 
228
-     * @return mixed
228
+     * @return Core\Options
229 229
      */
230 230
     public function getOptions()
231 231
     {
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
      * 
268 268
      * @param array $options Options passed to application
269 269
      * 
270
-     * @return void
270
+     * @return Application
271 271
      */
272 272
     public function initSystem($options)
273 273
     {
Please login to merge, or discard this patch.
src/class/install/ModuleInstall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -505,7 +505,7 @@
 block discarded – undo
505 505
      */
506 506
     protected function removeRecursiveDirectory($dirPath)
507 507
     {
508
-        $fileList = array_diff(scandir($dirPath), ['.','..']);
508
+        $fileList = array_diff(scandir($dirPath), ['.', '..']);
509 509
         
510 510
         foreach ($fileList as $filePath) {
511 511
             if (is_dir($filePath)) {
Please login to merge, or discard this patch.