@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | public function load(array $configs, ContainerBuilder $container) |
27 | 27 | { |
28 | 28 | $config = $this->processConfiguration(new Configuration(), $configs); |
29 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
29 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
30 | 30 | $loader->load('services.yml'); |
31 | 31 | |
32 | 32 | $keys = []; |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | foreach ($config['keys'] as $keyId => $keyConfig) { |
35 | 35 | |
36 | 36 | $keyConfig['kid'] = $keyId; |
37 | - $keyDefinition = new Definition('jwt.keys.' . $keyId); |
|
37 | + $keyDefinition = new Definition('jwt.keys.'.$keyId); |
|
38 | 38 | $keyDefinition->setClass('KleijnWeb\JwtBundle\Authenticator\JwtKey'); |
39 | 39 | |
40 | 40 | if (isset($keyConfig['loader'])) { |
@@ -20,7 +20,7 @@ |
||
20 | 20 | class TestBundle extends Bundle |
21 | 21 | { |
22 | 22 | /** |
23 | - * @return ExtensionInterface |
|
23 | + * @return boolean |
|
24 | 24 | */ |
25 | 25 | public function getContainerExtension() |
26 | 26 | { |
@@ -10,7 +10,6 @@ |
||
10 | 10 | |
11 | 11 | use KleijnWeb\JwtBundle\Tests\Authenticator\AuthenticatorTest; |
12 | 12 | use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; |
13 | -use Symfony\Bundle\FrameworkBundle\Client; |
|
14 | 13 | |
15 | 14 | /** |
16 | 15 | * @author John Kleijn <[email protected]> |
@@ -96,7 +96,7 @@ |
||
96 | 96 | $client = $this->createClient(); |
97 | 97 | $server = []; |
98 | 98 | if ($token) { |
99 | - $server = ['HTTP_AUTHORIZATION' => 'Bearer ' . $token]; |
|
99 | + $server = ['HTTP_AUTHORIZATION' => 'Bearer '.$token]; |
|
100 | 100 | } |
101 | 101 | $client->request('GET', $url, $parameters = [], $files = [], $server); |
102 | 102 |
@@ -175,7 +175,7 @@ |
||
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); |
@@ -25,6 +25,6 @@ |
||
25 | 25 | */ |
26 | 26 | public function registerContainerConfiguration(LoaderInterface $loader) |
27 | 27 | { |
28 | - $loader->load(__DIR__ . '/config.yml'); |
|
28 | + $loader->load(__DIR__.'/config.yml'); |
|
29 | 29 | } |
30 | 30 | } |
@@ -68,7 +68,7 @@ |
||
68 | 68 | return; |
69 | 69 | } |
70 | 70 | |
71 | - $dir = __DIR__ . '/App/app/cache'; |
|
71 | + $dir = __DIR__.'/App/app/cache'; |
|
72 | 72 | |
73 | 73 | if (!is_dir($dir)) { |
74 | 74 | return; |
@@ -68,7 +68,7 @@ |
||
68 | 68 | { |
69 | 69 | $tokenString = $request->headers->get('Authorization'); |
70 | 70 | |
71 | - if (0 === strpos((string)$tokenString, 'Bearer ')) { |
|
71 | + if (0 === strpos((string) $tokenString, 'Bearer ')) { |
|
72 | 72 | $tokenString = substr($tokenString, 7); |
73 | 73 | } |
74 | 74 |
@@ -155,7 +155,7 @@ |
||
155 | 155 | if ($this->requiredClaims) { |
156 | 156 | $missing = array_diff_key(array_flip($this->requiredClaims), $claims); |
157 | 157 | if (count($missing)) { |
158 | - throw new MissingClaimsException("Missing claims: " . implode(', ', $missing)); |
|
158 | + throw new MissingClaimsException("Missing claims: ".implode(', ', $missing)); |
|
159 | 159 | } |
160 | 160 | } |
161 | 161 | if ($this->issuer && !isset($claims['iss'])) { |
@@ -94,10 +94,10 @@ |
||
94 | 94 | if ($claimKey === 'aud') { |
95 | 95 | if (is_array($claimValue)) { |
96 | 96 | foreach ($claimValue as $role) { |
97 | - $roles[] = "ROLE_" . strtoupper($role); |
|
97 | + $roles[] = "ROLE_".strtoupper($role); |
|
98 | 98 | } |
99 | 99 | } elseif (is_string($claimValue)) { |
100 | - $roles[] = "ROLE_" . strtoupper($claimValue); |
|
100 | + $roles[] = "ROLE_".strtoupper($claimValue); |
|
101 | 101 | } |
102 | 102 | } |
103 | 103 | } |