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
Pull Request — master (#4)
by
unknown
02:46
created
examples/customerSearch.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 require '../vendor/autoload.php';
4 4
 
5
-$companyId = 0000;// company id provided by Kobas
6
-$clientId = '';// client id provided by Kobas
7
-$clientSecret = '';// client secret provided by Kobas
5
+$companyId = 0000; // company id provided by Kobas
6
+$clientId = ''; // client id provided by Kobas
7
+$clientSecret = ''; // client secret provided by Kobas
8 8
 $clientScope = ''; // client scope provided by Kobas
9 9
 
10 10
 $provider = new \Kobas\APIClient\Auth\Provider($companyId, $clientId, $clientSecret, $clientScope);
Please login to merge, or discard this patch.
examples/wirelessSocial.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 require '../vendor/autoload.php';
4 4
 
5
-$companyId = 0000;// company id provided by Kobas
6
-$clientId = '';// client id provided by Kobas
7
-$clientSecret = '';// client secret provided by Kobas
5
+$companyId = 0000; // company id provided by Kobas
6
+$clientId = ''; // client id provided by Kobas
7
+$clientSecret = ''; // client secret provided by Kobas
8 8
 $clientScope = ''; // client scope provided by Kobas
9 9
 
10 10
 $provider = new \Kobas\APIClient\Auth\Provider($companyId, $clientId, $clientSecret, $clientScope);
Please login to merge, or discard this patch.
src/Kobas/APIClient/Auth/Provider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,10 +50,10 @@
 block discarded – undo
50 50
      */
51 51
     public function __construct($companyId, $clientId, $clientSecret, $scopes)
52 52
     {
53
-        $this->companyId = (int)$companyId;
54
-        $this->clientId = (string)$clientId;
55
-        $this->clientSecret = (string)$clientSecret;
56
-        $this->scopes = (string)$scopes;
53
+        $this->companyId = (int) $companyId;
54
+        $this->clientId = (string) $clientId;
55
+        $this->clientSecret = (string) $clientSecret;
56
+        $this->scopes = (string) $scopes;
57 57
     }
58 58
 
59 59
     /**
Please login to merge, or discard this patch.