@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | */ |
148 | 148 | public function getStatements(): array |
149 | 149 | { |
150 | - return array_values(array_filter($this->statements, function ($statement) { |
|
150 | + return array_values(array_filter($this->statements, function($statement) { |
|
151 | 151 | return $statement instanceof AbstractStatement; |
152 | 152 | })); |
153 | 153 | } |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | */ |
159 | 159 | public function getSubjectStatements(): array |
160 | 160 | { |
161 | - return array_values(array_filter($this->statements, function ($statement) { |
|
161 | + return array_values(array_filter($this->statements, function($statement) { |
|
162 | 162 | return $statement instanceof AbstractSubjectStatement; |
163 | 163 | })); |
164 | 164 | } |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | */ |
170 | 170 | public function getAuthenticationStatements(): array |
171 | 171 | { |
172 | - return array_values(array_filter($this->statements, function ($statement) { |
|
172 | + return array_values(array_filter($this->statements, function($statement) { |
|
173 | 173 | return $statement instanceof AuthenticationStatement; |
174 | 174 | })); |
175 | 175 | } |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | */ |
181 | 181 | public function getAuthorizationDecisionStatements(): array |
182 | 182 | { |
183 | - return array_values(array_filter($this->statements, function ($statement) { |
|
183 | + return array_values(array_filter($this->statements, function($statement) { |
|
184 | 184 | return $statement instanceof AuthorizationDecisionStatement; |
185 | 185 | })); |
186 | 186 | } |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | */ |
192 | 192 | public function getAttributeStatements(): array |
193 | 193 | { |
194 | - return array_values(array_filter($this->statements, function ($statement) { |
|
194 | + return array_values(array_filter($this->statements, function($statement) { |
|
195 | 195 | return $statement instanceof AttributeStatement; |
196 | 196 | })); |
197 | 197 | } |
@@ -107,7 +107,7 @@ |
||
107 | 107 | $namespaceURI = $qName->getNamespaceURI()->getValue(); |
108 | 108 | |
109 | 109 | if ($namespaceURI !== null) { |
110 | - $localName = $qName->getLocalName()->getValue();; |
|
110 | + $localName = $qName->getLocalName()->getValue(); ; |
|
111 | 111 | $key = $qName->getRawValue(); |
112 | 112 | if (array_key_exists($key, $this->registr) === true) { |
113 | 113 | Assert::implementsInterface($this->registry[$key], ExtensionPointInterface::class); |