@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | |
| 3 | 3 | use Symfony\Component\Config\Loader\LoaderInterface; |
| 4 | 4 | use Symfony\Component\HttpKernel\Kernel; |
@@ -29,6 +29,6 @@ discard block |
||
| 29 | 29 | */ |
| 30 | 30 | public function registerContainerConfiguration(LoaderInterface $loader) |
| 31 | 31 | { |
| 32 | - $loader->load(__DIR__ . '/config_' . $this->getEnvironment() . '.yml'); |
|
| 32 | + $loader->load(__DIR__.'/config_'.$this->getEnvironment().'.yml'); |
|
| 33 | 33 | } |
| 34 | 34 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | /* |
| 3 | 3 | * This file is part of the KleijnWeb\JwtBundle package. |
| 4 | 4 | * |
@@ -45,12 +45,12 @@ discard block |
||
| 45 | 45 | ? ChildDefinition::class |
| 46 | 46 | : DefinitionDecorator::class; |
| 47 | 47 | |
| 48 | - $providerId = 'security.authentication.provider.jwt.' . $id; |
|
| 48 | + $providerId = 'security.authentication.provider.jwt.'.$id; |
|
| 49 | 49 | $container |
| 50 | 50 | ->setDefinition($providerId, new $childDefinitionClass('jwt.security.authentication.provider')) |
| 51 | 51 | ->replaceArgument(0, new Reference($userProvider)); |
| 52 | 52 | |
| 53 | - $listenerId = 'security.authentication.listener.jwt.' . $id; |
|
| 53 | + $listenerId = 'security.authentication.listener.jwt.'.$id; |
|
| 54 | 54 | $container->setDefinition($listenerId, new $childDefinitionClass('jwt.security.authentication.listener')); |
| 55 | 55 | |
| 56 | 56 | return [$providerId, $listenerId, $defaultEntryPoint]; |