diff --git a/cake/console/cake.php b/cake/console/cake.php index 0f90dbd445e..5d8669f9e5a 100644 --- a/cake/console/cake.php +++ b/cake/console/cake.php @@ -625,14 +625,14 @@ function help() { $columns = max(1, floor($width / 30)); $rows = ceil(count($shellList) / $columns); - foreach($shellList as $shell => $types) { + foreach ($shellList as $shell => $types) { sort($types); $shellList[$shell] = str_pad($shell . ' [' . implode ($types, ', ') . ']', $width / $columns); } $out = array_chunk($shellList, $rows); - for($i = 0; $i < $rows; $i++) { + for ($i = 0; $i < $rows; $i++) { $row = ''; - for($j = 0; $j < $columns; $j++) { + for ($j = 0; $j < $columns; $j++) { if (!isset($out[$j][$i])) { continue; }