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
Push — master ( 5be711...d985cd )
by herry
05:59
created
src/Providers/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
         $this->mergeConfigFrom(
16 16
             dirname(__DIR__) . '/../config/gjk.php', 'gjk'
17 17
         );
18
-        $this->app->singleton('gjk', function ($app) {
18
+        $this->app->singleton('gjk', function($app) {
19 19
             return new Gjk($app->config['gjk']);
20 20
         });
21 21
     }
Please login to merge, or discard this patch.
src/Sign.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,9 @@
 block discarded – undo
55 55
         $linkString = "";
56 56
         if (is_array($param)) {
57 57
             foreach ($param as $key => $value) {
58
-                if (is_null($value) || $value === "" || $key === "sign" || $key == "sign_type") continue;
58
+                if (is_null($value) || $value === "" || $key === "sign" || $key == "sign_type") {
59
+                    continue;
60
+                }
59 61
                 $value = is_array($value) ? json_encode($value, JSON_UNESCAPED_UNICODE) : $value;
60 62
                 $linkString .= "{$key}={$value}&";
61 63
             }
Please login to merge, or discard this patch.