Completed
Pull Request — master (#146)
by Matthew
18:27
created
Command/CountCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,11 +32,11 @@
 block discarded – undo
32 32
             $firstJob = key($status);
33 33
             if ($firstJob) {
34 34
                 $jobKeys = array_keys($status);
35
-                $maxLength = max(array_map(function ($item) {
35
+                $maxLength = max(array_map(function($item) {
36 36
                     return strlen($item ?: '');
37 37
                 }, $jobKeys));
38 38
                 $formatLen = $this->determineFormatLength($maxLength);
39
-                $format = '%-' . $formatLen . 's';
39
+                $format = '%-'.$formatLen.'s';
40 40
                 $headingArgs = ['Job name'];
41 41
                 $initialKeys = array_keys($status[$firstJob]);
42 42
                 $this->formatHeadings($initialKeys, $headingArgs, $format);
Please login to merge, or discard this patch.