@@ -90,11 +90,11 @@ discard block |
||
| 90 | 90 | Assert::maxCount($statements, C::UNBOUNDED_LIMIT); |
| 91 | 91 | Assert::allIsInstanceOf($statements, AbstractStatementType::class); |
| 92 | 92 | |
| 93 | - $authnStatements = array_values(array_filter($statements, function ($statement) { |
|
| 93 | + $authnStatements = array_values(array_filter($statements, function($statement) { |
|
| 94 | 94 | return $statement instanceof AuthnStatement; |
| 95 | 95 | })); |
| 96 | 96 | |
| 97 | - $attributeStatements = array_values(array_filter($statements, function ($statement) { |
|
| 97 | + $attributeStatements = array_values(array_filter($statements, function($statement) { |
|
| 98 | 98 | return $statement instanceof AttributeStatement; |
| 99 | 99 | })); |
| 100 | 100 | |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | */ |
| 136 | 136 | public function getAttributeStatements(): array |
| 137 | 137 | { |
| 138 | - return array_values(array_filter($this->statements, function ($statement) { |
|
| 138 | + return array_values(array_filter($this->statements, function($statement) { |
|
| 139 | 139 | return $statement instanceof AttributeStatement; |
| 140 | 140 | })); |
| 141 | 141 | } |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | public function getAuthnStatements(): array |
| 148 | 148 | { |
| 149 | - return array_values(array_filter($this->statements, function ($statement) { |
|
| 149 | + return array_values(array_filter($this->statements, function($statement) { |
|
| 150 | 150 | return $statement instanceof AuthnStatement; |
| 151 | 151 | })); |
| 152 | 152 | } |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | public function getStatements(): array |
| 159 | 159 | { |
| 160 | - return array_values(array_filter($this->statements, function ($statement) { |
|
| 160 | + return array_values(array_filter($this->statements, function($statement) { |
|
| 161 | 161 | return $statement instanceof AbstractStatement; |
| 162 | 162 | })); |
| 163 | 163 | } |