@@ -90,7 +90,7 @@ 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 | |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | */ |
| 132 | 132 | public function getAttributeStatements(): array |
| 133 | 133 | { |
| 134 | - return array_values(array_filter($this->statements, function ($statement) { |
|
| 134 | + return array_values(array_filter($this->statements, function($statement) { |
|
| 135 | 135 | return $statement instanceof AttributeStatement; |
| 136 | 136 | })); |
| 137 | 137 | } |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | */ |
| 143 | 143 | public function getAuthnStatements(): array |
| 144 | 144 | { |
| 145 | - return array_values(array_filter($this->statements, function ($statement) { |
|
| 145 | + return array_values(array_filter($this->statements, function($statement) { |
|
| 146 | 146 | return $statement instanceof AuthnStatement; |
| 147 | 147 | })); |
| 148 | 148 | } |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | */ |
| 154 | 154 | public function getStatements(): array |
| 155 | 155 | { |
| 156 | - return array_values(array_filter($this->statements, function ($statement) { |
|
| 156 | + return array_values(array_filter($this->statements, function($statement) { |
|
| 157 | 157 | return $statement instanceof AbstractStatement; |
| 158 | 158 | })); |
| 159 | 159 | } |