Completed
Push — master ( d8dc13...ea5814 )
by Tarmo
21s queued 12s
created
src/Command/Utils/CheckDependencies.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.