|
@@ -1,4 +1,4 @@ discard block |
|
|
block discarded – undo |
|
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 |
|
|
block discarded – undo |
|
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]; |
Please login to merge, or discard this patch.