@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | /** |
| 4 | 4 | * /src/Command/Utils/CheckDependencies.php |
| 5 | 5 | * |
@@ -86,8 +86,8 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | $packageNameLength = (int)max( |
| 88 | 88 | array_map( |
| 89 | - static fn (array $row): int => isset($row[1]) ? strlen($row[1]) : 0, |
|
| 90 | - array_filter($rows, static fn (mixed $row): bool => !$row instanceof TableSeparator) |
|
| 89 | + static fn(array $row): int => isset($row[1]) ? strlen($row[1]) : 0, |
|
| 90 | + array_filter($rows, static fn(mixed $row) : bool => !$row instanceof TableSeparator) |
|
| 91 | 91 | ) + [0] |
| 92 | 92 | ); |
| 93 | 93 | |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | ->directories() |
| 129 | 129 | ->in($this->projectDir . DIRECTORY_SEPARATOR . 'tools/'); |
| 130 | 130 | |
| 131 | - $closure = static fn (SplFileInfo $fileInfo): string => $fileInfo->getPath(); |
|
| 131 | + $closure = static fn(SplFileInfo $fileInfo): string => $fileInfo->getPath(); |
|
| 132 | 132 | |
| 133 | 133 | /** @var Traversable<SplFileInfo> $iterator */ |
| 134 | 134 | $iterator = $finder->getIterator(); |