@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | |
103 | 103 | $user = $userProvider->loadUserByUsername($jwtToken->getSubject()); |
104 | 104 | |
105 | - if($user instanceof UserInterface) { |
|
105 | + if ($user instanceof UserInterface) { |
|
106 | 106 | $user = $this->setUserRolesFromAudienceClaims($user, $token); |
107 | 107 | } |
108 | 108 | |
@@ -131,14 +131,14 @@ discard block |
||
131 | 131 | /** @var JwtToken $credentials */ |
132 | 132 | $credentials = $token->getCredentials(); |
133 | 133 | |
134 | - foreach($credentials->getClaims() as $claimKey => $claimValue) |
|
134 | + foreach ($credentials->getClaims() as $claimKey => $claimValue) |
|
135 | 135 | { |
136 | - if($claimKey === 'aud') { |
|
137 | - if(is_array($claimValue)) { |
|
138 | - foreach($claimValue as $role) { |
|
136 | + if ($claimKey === 'aud') { |
|
137 | + if (is_array($claimValue)) { |
|
138 | + foreach ($claimValue as $role) { |
|
139 | 139 | $user->addRole($role); |
140 | 140 | } |
141 | - } elseif(is_string($claimValue)) { |
|
141 | + } elseif (is_string($claimValue)) { |
|
142 | 142 | $user->addRole($claimValue); |
143 | 143 | } |
144 | 144 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | { |
176 | 176 | $authenticator = new Authenticator($this->keys); |
177 | 177 | $request = new Request(); |
178 | - $request->headers->set('Authorization', 'Bearer ' . self::TEST_TOKEN); |
|
178 | + $request->headers->set('Authorization', 'Bearer '.self::TEST_TOKEN); |
|
179 | 179 | $token = $authenticator->createToken($request, 'myprovider'); |
180 | 180 | |
181 | 181 | $expected = new JwtToken(self::TEST_TOKEN); |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | UserInterface::class |
213 | 213 | )->getMockForAbstractClass(); |
214 | 214 | |
215 | - $token = new PreAuthenticatedToken($user, $token, 'providerkey'); |
|
215 | + $token = new PreAuthenticatedToken($user, $token, 'providerkey'); |
|
216 | 216 | |
217 | 217 | $user->expects($this->exactly(2)) |
218 | 218 | ->method('addRole'); |