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 ( 1475c3...fea5eb )
by Vermeulen
01:41
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/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.
skel/app/config/bfw/monolog.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
                 Logger::DEBUG
21 21
             ]
22 22
         ]
23
-        */
23
+         */
24 24
     ]
25 25
 ];
Please login to merge, or discard this patch.
src/class/Application.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
     /**
173 173
      * Getter to access to the errors instance
174 174
      * 
175
-     * @return \BFW\Errors
175
+     * @return Core\Errors
176 176
      */
177 177
     public function getErrors()
178 178
     {
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
     /**
235 235
      * Getter to access to the options system
236 236
      * 
237
-     * @return mixed
237
+     * @return Core\Options
238 238
      */
239 239
     public function getOptions()
240 240
     {
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
      * 
277 277
      * @param array $options Options passed to application
278 278
      * 
279
-     * @return void
279
+     * @return Application
280 280
      */
281 281
     public function initSystem($options)
282 282
     {
@@ -705,7 +705,7 @@  discard block
 block discarded – undo
705 705
     /**
706 706
      * List all tasks runned by ctrlRouterLink
707 707
      * 
708
-     * @return array
708
+     * @return \stdClass[]
709 709
      */
710 710
     protected function obtainCtrlRouterLinkTasks()
711 711
     {
Please login to merge, or discard this patch.