@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | |
11 | 11 | class Openidconnect implements Extensionable |
12 | 12 | { |
13 | - public function buildClientConfiguration(NodeDefinition &$node) |
|
13 | + public function buildClientConfiguration(NodeDefinition&$node) |
|
14 | 14 | { |
15 | 15 | $optionsNode = $node->children(); |
16 | 16 | $optionsNode |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $optionsNode->end(); |
42 | 42 | } |
43 | 43 | |
44 | - private function buildUri(NodeDefinition &$node) |
|
44 | + private function buildUri(NodeDefinition&$node) |
|
45 | 45 | { |
46 | 46 | $optionsNode = $node->children(); |
47 | 47 | $optionsNode |
@@ -64,13 +64,13 @@ discard block |
||
64 | 64 | ]); |
65 | 65 | } |
66 | 66 | |
67 | - public function configure(ContainerBuilder &$container) |
|
67 | + public function configure(ContainerBuilder&$container) |
|
68 | 68 | { |
69 | 69 | $clientConfigurations = $container->getParameter('sludio_helper.openidconnect.clients'); |
70 | 70 | foreach ($clientConfigurations as $key => $clientConfig) { |
71 | 71 | $tree = new TreeBuilder(); |
72 | 72 | $processor = new Processor(); |
73 | - $node = $tree->root('sludio_helper_openidconnect_client/clients/' . $key); |
|
73 | + $node = $tree->root('sludio_helper_openidconnect_client/clients/'.$key); |
|
74 | 74 | $this->buildClientConfiguration($node); |
75 | 75 | $config = $processor->process($tree->buildTree(), [$clientConfig]); |
76 | 76 | $clientServiceKey = 'sludio_helper.openidconnect.client.'.$key; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | return $this->configurators[$type]; |
54 | 54 | } |
55 | 55 | |
56 | - public function buildClientConfiguration(NodeDefinition &$node) |
|
56 | + public function buildClientConfiguration(NodeDefinition&$node) |
|
57 | 57 | { |
58 | 58 | $optionsNode = $node->children(); |
59 | 59 | $optionsNode |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | return $clientServiceKey; |
122 | 122 | } |
123 | 123 | |
124 | - public function configure(ContainerBuilder &$container) |
|
124 | + public function configure(ContainerBuilder&$container) |
|
125 | 125 | { |
126 | 126 | $clientConfigurations = $container->getParameter('sludio_helper.oauth.clients'); |
127 | 127 | $clientServiceKeys = []; |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | return $this->configurators[$type]; |
36 | 36 | } |
37 | 37 | |
38 | - public function configure(ContainerBuilder &$container) |
|
38 | + public function configure(ContainerBuilder&$container) |
|
39 | 39 | { |
40 | 40 | $clientConfigurations = $container->getParameter('sludio_helper.captcha.clients'); |
41 | 41 | foreach ($clientConfigurations as $key => $clientConfig) { |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
84 | - public function buildClientConfiguration(NodeDefinition &$node) |
|
84 | + public function buildClientConfiguration(NodeDefinition&$node) |
|
85 | 85 | { |
86 | 86 | $optionsNode = $node->children(); |
87 | 87 | $this->getConfigurator($this->getType())->buildConfiguration($optionsNode); |