Passed
Push — master ( 4c1471...2367ea )
by Raffael
02:20
created
src/Adapter/Basic/AbstractBasic.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
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/Adapter/Basic/BasicInterface.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
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/Exception/AdapterNotUnique.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
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/Exception/NotAuthenticated.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
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/Exception/AdapterNotFound.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
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/Exception/IdentityAttributeNotFound.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
 /**
6 6
  * Micro
Please login to merge, or discard this patch.
src/Adapter/AbstractAdapter.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
 /**
6 6
  * Micro
@@ -73,11 +73,11 @@  discard block
 block discarded – undo
73 73
 
74 74
                 break;
75 75
                 case 'attr_sync_cache':
76
-                    $this->attr_sync_cache = (int) $value;
76
+                    $this->attr_sync_cache = (int)$value;
77 77
 
78 78
                 break;
79 79
                 case 'identity_attribute':
80
-                    $this->identity_attribute = (int) $value;
80
+                    $this->identity_attribute = (int)$value;
81 81
 
82 82
                 break;
83 83
                 default:
Please login to merge, or discard this patch.
src/Adapter/Oidc.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
         }
199 199
 
200 200
         $this->logger->debug('fetch user attributes from userinfo_endpoint ['.$discovery['userinfo_endpoint'].']', [
201
-           'category' => get_class($this),
201
+            'category' => get_class($this),
202 202
         ]);
203 203
 
204 204
         $url = $discovery['userinfo_endpoint'].'?access_token='.$this->access_token;
@@ -213,13 +213,13 @@  discard block
 block discarded – undo
213 213
         if (200 === $code) {
214 214
             $attributes = json_decode($result, true);
215 215
             $this->logger->debug('successfully requested user attributes from userinfo_endpoint', [
216
-               'category' => get_class($this),
216
+                'category' => get_class($this),
217 217
             ]);
218 218
 
219 219
             return $this->attributes = $attributes;
220 220
         }
221 221
         $this->logger->error('failed requesting user attributes from userinfo_endpoint, status code ['.$code.']', [
222
-               'category' => get_class($this),
222
+                'category' => get_class($this),
223 223
             ]);
224 224
 
225 225
         throw new OidcException\UserInfoRequestFailed('failed requesting user attribute from userinfo_endpoint');
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     {
237 237
         if ($this->token_validation_url) {
238 238
             $this->logger->debug('validate oauth2 token via rfc7662 token validation endpoint ['.$this->token_validation_url.']', [
239
-               'category' => get_class($this),
239
+                'category' => get_class($this),
240 240
             ]);
241 241
 
242 242
             $url = str_replace('{token}', $token, $this->token_validation_url);
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
             }
248 248
 
249 249
             $this->logger->debug('validate token via openid-connect userinfo_endpoint ['.$discovery['userinfo_endpoint'].']', [
250
-               'category' => get_class($this),
250
+                'category' => get_class($this),
251 251
             ]);
252 252
 
253 253
             $url = $discovery['userinfo_endpoint'].'?access_token='.$token;
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
         if (200 === $code) {
265 265
             $attributes = json_decode($result, true);
266 266
             $this->logger->debug('successfully verified oauth2 access token via authorization server', [
267
-               'category' => get_class($this),
267
+                'category' => get_class($this),
268 268
             ]);
269 269
 
270 270
             if (!isset($attributes[$this->identity_attribute])) {
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
             return true;
283 283
         }
284 284
         $this->logger->error('failed verify oauth2 access token via authorization server, received status ['.$code.']', [
285
-               'category' => get_class($this),
285
+                'category' => get_class($this),
286 286
             ]);
287 287
 
288 288
         throw new OidcException\InvalidAccessToken('failed verify oauth2 access token via authorization server');
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 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
 /**
6 6
  * Micro
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
             switch ($option) {
88 88
                 case 'provider_url':
89 89
                 case 'token_validation_url':
90
-                    $this->{$option} = (string) $value;
90
+                    $this->{$option} = (string)$value;
91 91
                     unset($config[$option]);
92 92
 
93 93
                 break;
Please login to merge, or discard this patch.
src/Adapter/Oidc/Exception/UserEndpointNotSet.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
 /**
6 6
  * Micro
Please login to merge, or discard this patch.