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 ( 2321f2...25b8a8 )
by Dmitri
01:58
created
DependencyInjection/DamaxApiAuthExtension.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 Damax\Bundle\ApiAuthBundle\DependencyInjection;
6 6
 
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Spacing   +9 added lines, -9 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 Damax\Bundle\ApiAuthBundle\DependencyInjection;
6 6
 
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
         return (new ArrayNodeDefinition($name))
39 39
             ->canBeEnabled()
40 40
             ->beforeNormalization()
41
-                ->ifTrue(function (array $config): bool {
41
+                ->ifTrue(function(array $config): bool {
42 42
                     return !isset($config['tokens']);
43 43
                 })
44
-                ->then(function (array $config): array {
44
+                ->then(function(array $config): array {
45 45
                     $enabled = $config['enabled'];
46 46
 
47 47
                     unset($config['enabled']);
@@ -111,12 +111,12 @@  discard block
 block discarded – undo
111 111
                 ->arrayNode('signer')
112 112
                     ->isRequired()
113 113
                     ->beforeNormalization()
114
-                        ->ifTrue(function (?array $config): bool {
114
+                        ->ifTrue(function(?array $config): bool {
115 115
                             $type = $config['type'] ?? self::SIGNER_SYMMETRIC;
116 116
 
117 117
                             return self::SIGNER_ASYMMETRIC === $type;
118 118
                         })
119
-                        ->then(function (array $config): array {
119
+                        ->then(function(array $config): array {
120 120
                             if (isset($config['signing_key'])) {
121 121
                                 $config['signing_key'] = 'file://' . $config['signing_key'];
122 122
                             }
@@ -129,25 +129,25 @@  discard block
 block discarded – undo
129 129
                         })
130 130
                     ->end()
131 131
                     ->validate()
132
-                        ->ifTrue(function (array $config): bool {
132
+                        ->ifTrue(function(array $config): bool {
133 133
                             return self::SIGNER_ASYMMETRIC === $config['type'] && empty($config['verification_key']);
134 134
                         })
135 135
                         ->thenInvalid('Verification key must be specified for "asymmetric" signer.')
136 136
                     ->end()
137 137
                     ->validate()
138
-                        ->ifTrue(function (array $config): bool {
138
+                        ->ifTrue(function(array $config): bool {
139 139
                             return self::SIGNER_SYMMETRIC === $config['type'] && !in_array($config['algorithm'], self::SYMMETRIC_ALGOS);
140 140
                         })
141 141
                         ->thenInvalid('HMAC algorithm must be specified for "symmetric" signer.')
142 142
                     ->end()
143 143
                     ->validate()
144
-                        ->ifTrue(function (array $config): bool {
144
+                        ->ifTrue(function(array $config): bool {
145 145
                             return self::SIGNER_ASYMMETRIC === $config['type'] && !in_array($config['algorithm'], self::ASYMMETRIC_ALGOS);
146 146
                         })
147 147
                         ->thenInvalid('RSA or ECDSA algorithm must be specified for "asymmetric" signer.')
148 148
                     ->end()
149 149
                     ->validate()
150
-                        ->ifTrue(function (array $config): bool {
150
+                        ->ifTrue(function(array $config): bool {
151 151
                             if (self::SIGNER_SYMMETRIC === $config['type']) {
152 152
                                 return false;
153 153
                             }
Please login to merge, or discard this patch.
Tests/DependencyInjection/ConfigurationTest.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 Damax\Bundle\ApiAuthBundle\Tests\DependencyInjection;
6 6
 
Please login to merge, or discard this patch.
Tests/Security/ApiKey/InvalidApiKeyExceptionTest.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 Damax\Bundle\ApiAuthBundle\Tests\Security\ApiKey;
6 6
 
Please login to merge, or discard this patch.
Tests/Security/ApiKey/TokenUserProviderTest.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 Damax\Bundle\ApiAuthBundle\Tests\Security\ApiKey;
6 6
 
Please login to merge, or discard this patch.
Tests/Security/ApiUserTest.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 Damax\Bundle\ApiAuthBundle\Tests\Security;
6 6
 
Please login to merge, or discard this patch.
Tests/Security/Jwt/AuthenticationHandlerTest.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 Damax\Bundle\ApiAuthBundle\Tests\Security\Jwt;
6 6
 
Please login to merge, or discard this patch.
Tests/Extractor/ChainExtractorTest.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 Damax\Bundle\ApiAuthBundle\Tests\Extractor;
6 6
 
Please login to merge, or discard this patch.
Tests/Extractor/QueryExtractorTest.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 Damax\Bundle\ApiAuthBundle\Tests\Extractor;
6 6
 
Please login to merge, or discard this patch.