@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Utils/Tests/ContainerTestCase.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Utils/LoginLoggerInterface.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Utils/RequestLoggerInterface.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Utils/RequestLogger.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Utils/LoginLogger.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Rest/ResponseHandler.php |
5 | 5 | * |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | if ($populateAll && \count($populate) === 0) { |
110 | 110 | $associations = $this->getResource()->getAssociations(); |
111 | 111 | |
112 | - $iterator = function (string $assocName) use ($entityName): string { |
|
112 | + $iterator = function(string $assocName) use ($entityName): string { |
|
113 | 113 | return $entityName . '.' . $assocName; |
114 | 114 | }; |
115 | 115 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Rest/RestResource.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Rest/ResponseHandlerInterface.php |
5 | 5 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * /src/Rest/RequestHandler.php |
5 | 5 | * |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @param string $value |
96 | 96 | * @param integer|string $key |
97 | 97 | */ |
98 | - $iterator = function (string &$value, $key) use (&$output) { |
|
98 | + $iterator = function(string&$value, $key) use (&$output) { |
|
99 | 99 | $order = 'ASC'; |
100 | 100 | |
101 | 101 | if (\is_string($key)) { |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | * |
208 | 208 | * @param string|array $terms |
209 | 209 | */ |
210 | - $iterator = function (&$terms) { |
|
210 | + $iterator = function(&$terms) { |
|
211 | 211 | $terms = \array_unique(\array_values(\array_filter($terms))); |
212 | 212 | }; |
213 | 213 |