@@ -38,7 +38,7 @@ |
||
38 | 38 | */ |
39 | 39 | public static function configureRoutes(GroupInterface $routes): void |
40 | 40 | { |
41 | - $routes->group(static::GROUP_PREFIX, function (GroupInterface $group) { |
|
41 | + $routes->group(static::GROUP_PREFIX, function(GroupInterface $group) { |
|
42 | 42 | $group->get(static::AUTHORIZE_URI, PassportController::AUTHORIZE_HANDLER); |
43 | 43 | $group->post(static::TOKEN_URI, PassportController::TOKEN_HANDLER); |
44 | 44 | }); |
@@ -38,13 +38,13 @@ |
||
38 | 38 | { |
39 | 39 | static::baseConfigureContainer($container); |
40 | 40 | |
41 | - $container[PassportServerIntegrationInterface::class] = function ( |
|
41 | + $container[PassportServerIntegrationInterface::class] = function( |
|
42 | 42 | PsrContainerInterface $container |
43 | 43 | ): PassportServerIntegrationInterface { |
44 | 44 | return new PassportServerIntegration($container); |
45 | 45 | }; |
46 | 46 | |
47 | - $container[TokenRepositoryInterface::class] = function ( |
|
47 | + $container[TokenRepositoryInterface::class] = function( |
|
48 | 48 | PsrContainerInterface $container |
49 | 49 | ): TokenRepositoryInterface { |
50 | 50 | $connection = $container->get(Connection::class); |
@@ -38,13 +38,13 @@ |
||
38 | 38 | { |
39 | 39 | static::baseConfigureContainer($container); |
40 | 40 | |
41 | - $container[PassportServerIntegrationInterface::class] = function ( |
|
41 | + $container[PassportServerIntegrationInterface::class] = function( |
|
42 | 42 | PsrContainerInterface $container |
43 | 43 | ): PassportServerIntegrationInterface { |
44 | 44 | return new PassportServerIntegration($container); |
45 | 45 | }; |
46 | 46 | |
47 | - $container[TokenRepositoryInterface::class] = function ( |
|
47 | + $container[TokenRepositoryInterface::class] = function( |
|
48 | 48 | PsrContainerInterface $container |
49 | 49 | ): TokenRepositoryInterface { |
50 | 50 | $connection = $container->get(Connection::class); |
@@ -57,7 +57,7 @@ |
||
57 | 57 | // try to parse `Authorization` header for client ID and credentials |
58 | 58 | $clientId = null; |
59 | 59 | $clientCredentials = null; |
60 | - $errorHeaders = ['WWW-Authenticate' => 'Basic realm="' . $realm . '"']; |
|
60 | + $errorHeaders = ['WWW-Authenticate' => 'Basic realm="'.$realm.'"']; |
|
61 | 61 | if (empty($headerArray = $authorizationHeader) === false) { |
62 | 62 | $errorCode = OAuthTokenBodyException::ERROR_INVALID_CLIENT; |
63 | 63 | if (empty($authHeader = $headerArray[0]) === true || |
@@ -63,7 +63,7 @@ |
||
63 | 63 | { |
64 | 64 | if ($this->hasDynamicProperty(static::FIELD_ID) === true) { |
65 | 65 | $this |
66 | - ->setIdentifier((int)$this->{static::FIELD_ID}) |
|
66 | + ->setIdentifier((int) $this->{static::FIELD_ID}) |
|
67 | 67 | ->setClientIdentifier($this->{static::FIELD_ID_CLIENT}) |
68 | 68 | ->setValue($this->{static::FIELD_VALUE}); |
69 | 69 | } |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | |
369 | 369 | assert(is_string($defaultClientId) === true && empty($defaultClientId) === false); |
370 | 370 | |
371 | - $defaultClient = $this->readClientByIdentifier($defaultClientId); |
|
371 | + $defaultClient = $this->readClientByIdentifier($defaultClientId); |
|
372 | 372 | |
373 | 373 | assert($defaultClient !== null); |
374 | 374 | |
@@ -441,7 +441,7 @@ discard block |
||
441 | 441 | $tokenRepo->updateValues($updatedToken); |
442 | 442 | } else { |
443 | 443 | assert(is_array($scope)); |
444 | - $tokenRepo->inTransaction(function () use ($tokenRepo, $updatedToken, $scope) { |
|
444 | + $tokenRepo->inTransaction(function() use ($tokenRepo, $updatedToken, $scope) { |
|
445 | 445 | $tokenRepo->updateValues($updatedToken); |
446 | 446 | $tokenRepo->unbindScopes($updatedToken->getIdentifier()); |
447 | 447 | $tokenRepo->bindScopeIdentifiers($updatedToken->getIdentifier(), $scope); |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | { |
502 | 502 | $this->logDebug('Sending token as JSON response.'); |
503 | 503 | |
504 | - $scopeList = $token->isScopeModified() === false || empty($token->getScopeIdentifiers()) === true ? |
|
504 | + $scopeList = $token->isScopeModified() === false || empty($token->getScopeIdentifiers()) === true ? |
|
505 | 505 | null : $token->getScopeList(); |
506 | 506 | |
507 | 507 | // for access token format @link https://tools.ietf.org/html/rfc6749#section-5.1 |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | ): ResponseInterface { |
566 | 566 | $this->logDebug('Sending token as redirect response.'); |
567 | 567 | |
568 | - $scopeList = $token->isScopeModified() === false || empty($token->getScopeIdentifiers()) === true ? |
|
568 | + $scopeList = $token->isScopeModified() === false || empty($token->getScopeIdentifiers()) === true ? |
|
569 | 569 | null : $token->getScopeList(); |
570 | 570 | |
571 | 571 | // for access token format @link https://tools.ietf.org/html/rfc6749#section-5.1 |
@@ -721,7 +721,7 @@ discard block |
||
721 | 721 | */ |
722 | 722 | private function filterNulls(array $array): array |
723 | 723 | { |
724 | - return array_filter($array, function ($value) { |
|
724 | + return array_filter($array, function($value) { |
|
725 | 725 | return $value !== null; |
726 | 726 | }); |
727 | 727 | } |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | [ |
141 | 141 | ContainerInterface::class, |
142 | 142 | 'int', |
143 | - function (ReflectionParameter $parameter) { |
|
143 | + function(ReflectionParameter $parameter) { |
|
144 | 144 | return $parameter->allowsNull() === true && $parameter->isArray() === true; |
145 | 145 | }, |
146 | 146 | ] |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | $appConfig = $this->getAppConfig(); |
206 | 206 | |
207 | 207 | return [ |
208 | - static::KEY_IS_LOG_ENABLED => (bool)($appConfig[A::KEY_IS_LOG_ENABLED] ?? false), |
|
208 | + static::KEY_IS_LOG_ENABLED => (bool) ($appConfig[A::KEY_IS_LOG_ENABLED] ?? false), |
|
209 | 209 | static::KEY_CODE_EXPIRATION_TIME_IN_SECONDS => 10 * 60, |
210 | 210 | static::KEY_TOKEN_EXPIRATION_TIME_IN_SECONDS => 60 * 60, |
211 | 211 | static::KEY_RENEW_REFRESH_VALUE_ON_TOKEN_REFRESH => true, |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | /** @var callable|null $customPropProvider */ |
128 | 128 | $customPropProvider = $this->settings[C::KEY_TOKEN_CUSTOM_PROPERTIES_PROVIDER] ?? null; |
129 | 129 | $wrapper = $customPropProvider !== null ? |
130 | - function (TokenInterface $token) use ($container, $customPropProvider): array { |
|
130 | + function(TokenInterface $token) use ($container, $customPropProvider) : array { |
|
131 | 131 | return call_user_func($customPropProvider, $container, $token); |
132 | 132 | } : null; |
133 | 133 | |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public function generateCodeValue(TokenInterface $token): string |
178 | 178 | { |
179 | - $codeValue = bin2hex(random_bytes(16)) . uniqid(); |
|
179 | + $codeValue = bin2hex(random_bytes(16)).uniqid(); |
|
180 | 180 | |
181 | 181 | assert(is_string($codeValue) === true && empty($codeValue) === false); |
182 | 182 | |
@@ -188,10 +188,10 @@ discard block |
||
188 | 188 | */ |
189 | 189 | public function generateTokenValues(TokenInterface $token): array |
190 | 190 | { |
191 | - $tokenValue = bin2hex(random_bytes(16)) . uniqid(); |
|
191 | + $tokenValue = bin2hex(random_bytes(16)).uniqid(); |
|
192 | 192 | $tokenType = 'bearer'; |
193 | 193 | $tokenExpiresIn = $this->getTokenExpirationPeriod(); |
194 | - $refreshValue = bin2hex(random_bytes(16)) . uniqid(); |
|
194 | + $refreshValue = bin2hex(random_bytes(16)).uniqid(); |
|
195 | 195 | |
196 | 196 | assert(is_string($tokenValue) === true && empty($tokenValue) === false); |
197 | 197 | assert(is_string($tokenType) === true && empty($tokenType) === false); |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | self::SCOPE_APPROVAL_IS_SCOPE_MODIFIED => $isScopeModified, |
261 | 261 | self::SCOPE_APPROVAL_SCOPE => $scopeList, |
262 | 262 | self::SCOPE_APPROVAL_STATE => $state, |
263 | - ], function ($value) { |
|
263 | + ], function($value) { |
|
264 | 264 | return $value !== null; |
265 | 265 | }); |
266 | 266 |
@@ -154,9 +154,9 @@ |
||
154 | 154 | { |
155 | 155 | if ($this->hasDynamicProperty(static::FIELD_ID) === true) { |
156 | 156 | $this |
157 | - ->setIdentifier((int)$this->{static::FIELD_ID}) |
|
157 | + ->setIdentifier((int) $this->{static::FIELD_ID}) |
|
158 | 158 | ->setClientIdentifier($this->{static::FIELD_ID_CLIENT}) |
159 | - ->setUserIdentifier((int)$this->{static::FIELD_ID_USER}) |
|
159 | + ->setUserIdentifier((int) $this->{static::FIELD_ID_USER}) |
|
160 | 160 | ->setRedirectUriString($this->{static::FIELD_REDIRECT_URI}) |
161 | 161 | ->setCode($this->{static::FIELD_CODE}) |
162 | 162 | ->setType($this->{static::FIELD_TYPE}) |