@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * (c) Christian Gripp <[email protected]> |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | */ |
181 | 181 | private function equalToErrors() |
182 | 182 | { |
183 | - return $this->callback(function ($error) { |
|
183 | + return $this->callback(function($error) { |
|
184 | 184 | if ($error instanceof FormError) { |
185 | 185 | foreach ($this->errors as &$data) { |
186 | 186 | if ($error->getMessage() === $data['message'] && $error->getMessageParameters() === $data['parameters']) { |