@@ -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 | * This file is part of the box project. |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | private static function dumpCheckScript(string ...$files): array |
112 | 112 | { |
113 | 113 | $autoloads = array_map( |
114 | - function (string $file): string { |
|
114 | + function(string $file): string { |
|
115 | 115 | return sprintf( |
116 | 116 | 'require_once __DIR__."/%s";', |
117 | 117 | $file |
@@ -146,7 +146,7 @@ |
||
146 | 146 | * |
147 | 147 | * @return bool |
148 | 148 | */ |
149 | - function ($checkPassed, Requirement $requirement) { |
|
149 | + function($checkPassed, Requirement $requirement) { |
|
150 | 150 | return $checkPassed && $requirement->isFulfilled(); |
151 | 151 | }, |
152 | 152 | true |
@@ -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 | * This file is part of the box project. |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | private static function exportRequirementsIntoConfig(RequirementCollection $requirements): array |
142 | 142 | { |
143 | 143 | return array_map( |
144 | - function (Requirement $requirement): array { |
|
144 | + function(Requirement $requirement): array { |
|
145 | 145 | return [ |
146 | 146 | $requirement->getIsFullfilledChecker(), |
147 | 147 | $requirement->getTestMessage(), |
@@ -46,7 +46,7 @@ |
||
46 | 46 | $this->fulfilled = eval($this->checkIsFulfilled); |
47 | 47 | } |
48 | 48 | |
49 | - return (bool) $this->fulfilled; // Cast to boolean, `(bool)` and `boolval()` are not available in PHP 5.3 |
|
49 | + return (bool) $this->fulfilled; // Cast to boolean, `(bool)` and `boolval()` are not available in PHP 5.3 |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |