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 ( e271c1...debdfc )
by Joni
06:33
created
lib/JWX/JWK/JWKSet.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\JWX\JWK;
6 6
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                 "JWK Set must have a 'keys' member.");
70 70
         }
71 71
         $jwks = array_map(
72
-            function ($jwkdata) {
72
+            function($jwkdata) {
73 73
                 return JWK::fromArray($jwkdata);
74 74
             }, $members['keys']);
75 75
         unset($members['keys']);
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     {
175 175
         $data = $this->_additional;
176 176
         $data['keys'] = array_map(
177
-            function (JWK $jwk) {
177
+            function(JWK $jwk) {
178 178
                 return $jwk->toArray();
179 179
             }, $this->_jwks);
180 180
         return $data;
Please login to merge, or discard this patch.
lib/JWX/JWK/RSA/RSAPublicKeyJWK.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\JWX\JWK\RSA;
6 6
 
Please login to merge, or discard this patch.
lib/JWX/JWK/Parameter/PrivateExponentParameter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\JWX\JWK\Parameter;
6 6
 
Please login to merge, or discard this patch.
lib/JWX/JWK/TypedJWK.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\JWX\JWK;
6 6
 
Please login to merge, or discard this patch.
lib/JWX/JWK/Asymmetric/PublicKeyJWK.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\JWX\JWK\Asymmetric;
6 6
 
Please login to merge, or discard this patch.
lib/JWX/JWK/EC/ECPublicKeyJWK.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\JWX\JWK\EC;
6 6
 
Please login to merge, or discard this patch.
lib/JWX/JWS/SignatureAlgorithm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\JWX\JWS;
6 6
 
Please login to merge, or discard this patch.
lib/JWX/JWS/Algorithm/OpenSSLSignatureAlgorithm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\JWX\JWS\Algorithm;
6 6
 
Please login to merge, or discard this patch.
lib/JWX/Util/UUIDv4.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\JWX\Util;
6 6
 
@@ -78,9 +78,9 @@  discard block
 block discarded – undo
78 78
             // time_mid
79 79
             mt_rand(0, 0xffff),
80 80
             // time_hi_and_version
81
-            mt_rand(0, 0x0fff) | 0x4000,
81
+            mt_rand(0, 0x0fff)|0x4000,
82 82
             // clk_seq_hi_res
83
-            mt_rand(0, 0x3f) | 0x80,
83
+            mt_rand(0, 0x3f)|0x80,
84 84
             // clk_seq_low
85 85
             mt_rand(0, 0xff),
86 86
             // node
Please login to merge, or discard this patch.