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 — master ( 1da20a...51ab1d )
by Cees-Jan
10s
created
src/Signature/HmacSignature.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\Psr7\Oauth1\Signature;
4 4
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
         ksort($data);
63 63
 
64
-        array_walk($data, function (&$value, $key) {
64
+        array_walk($data, function(&$value, $key) {
65 65
             $value = $key.'='.$value;
66 66
         });
67 67
 
Please login to merge, or discard this patch.
src/RequestSigning/RequestSigner.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\Psr7\Oauth1\RequestSigning;
4 4
 
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      */
173 173
     private function generateAuthorizationheader(array $parameters): string
174 174
     {
175
-        array_walk($parameters, function (&$value, $key) {
175
+        array_walk($parameters, function(&$value, $key) {
176 176
             $value = rawurlencode($key).'="'.rawurlencode($value).'"';
177 177
         });
178 178
 
Please login to merge, or discard this patch.
src/Definition/ConsumerSecret.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\Psr7\Oauth1\Definition;
4 4
 
Please login to merge, or discard this patch.
src/Definition/ConsumerKey.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\Psr7\Oauth1\Definition;
4 4
 
Please login to merge, or discard this patch.
src/Definition/TokenSecret.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\Psr7\Oauth1\Definition;
4 4
 
Please login to merge, or discard this patch.
src/Definition/RequestToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\Psr7\Oauth1\Definition;
4 4
 
Please login to merge, or discard this patch.
src/Definition/AccessToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\Psr7\Oauth1\Definition;
4 4
 
Please login to merge, or discard this patch.
src/Signature/Signature.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\Psr7\Oauth1\Definition;
4 4
 
Please login to merge, or discard this patch.
src/Signature/HmacSha1Signature.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\Psr7\Oauth1\Definition;
4 4
 
Please login to merge, or discard this patch.