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.
Passed
Branch dev-master (507862)
by Vijay
36:11
created
app/lib/App/CLI/Base.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\CLI;
4 4
 
5
-use FFMVC\Helpers;
6 5
 use App\{Traits, Controllers, Models, Mappers};
7 6
 
8 7
 /**
Please login to merge, or discard this patch.
app/lib/App/CLI/Index.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      * run cli.php '/index/running' in two different terminals
31 31
      * @param \Base $f3
32 32
      * @param array $params
33
-     * @return void
33
+     * @return false|null
34 34
      */
35 35
     public function running(\Base $f3, array $params = [])
36 36
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\CLI;
4 4
 
5
-use FFMVC\Helpers;
6
-
7 5
 /**
8 6
  * Index CLI Class.
9 7
  *
Please login to merge, or discard this patch.
app/lib/App/Controllers/API/API.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     /**
237 237
      * Set the RFC-compliant OAuth Error to return.
238 238
      *
239
-     * @param type $code  of error code from RFC
239
+     * @param string $code  of error code from RFC
240 240
      * @throws Models\APIServerException
241 241
      * @return the OAuth error array
242 242
      */
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
      * Validate the provided access token or get the bearer token from the incoming http request
333 333
      *
334 334
      * @param array $params optional params
335
-     * @return boolean true/false on valid access credentials
335
+     * @return null|boolean true/false on valid access credentials
336 336
      */
337 337
     protected function validateAccess(array $params = [])
338 338
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Controllers\API;
4 4
 
5
-use FFMVC\Helpers as Helpers;
6 5
 use App\Models as Models;
6
+use FFMVC\Helpers as Helpers;
7 7
 
8 8
 /**
9 9
  * API Controller Class.
Please login to merge, or discard this patch.
app/lib/App/Controllers/API/Test.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Controllers\API;
4 4
 
5
-use FFMVC\Helpers as Helpers;
6
-
7 5
 /**
8 6
  * API Test Controller Class.
9 7
  *
Please login to merge, or discard this patch.
app/lib/App/Setup.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -16,6 +16,7 @@
 block discarded – undo
16 16
      * setup database
17 17
      *
18 18
      * @param \Dice\Dice dependency injector
19
+     * @param \Dice\Dice $dice
19 20
      * @return void
20 21
      */
21 22
     public static function database(&$dice)
Please login to merge, or discard this patch.