From a1124e36aa3b161c4605313292ff76bd65ca5cb8 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Sun, 28 Feb 2010 11:35:56 -0500 Subject: [PATCH] Fixing formatting. --- cake/console/cake.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }