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 ( d6fc2c...28a884 )
by Jamie
04:44
created
src/Networking/v2/Models/Network.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         $networksData = Utils::jsonDecode($response)['networks'];
63 63
 
64 64
         $networks = [];
65
-        foreach($networksData as $resourceData) {
65
+        foreach ($networksData as $resourceData) {
66 66
             $resource = $this->newInstance();
67 67
             $resource->populateFromArray($resourceData);
68 68
             $networks[] = $resource;
Please login to merge, or discard this patch.
src/Networking/v2/Models/Subnet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
         $subnetsData = Utils::jsonDecode($response)['subnets'];
88 88
 
89 89
         $subnets = [];
90
-        foreach($subnetsData as $resourceData) {
90
+        foreach ($subnetsData as $resourceData) {
91 91
             $resource = $this->newInstance();
92 92
             $resource->populateFromArray($resourceData);
93 93
             $subnets[] = $resource;
Please login to merge, or discard this patch.