Fixing coding style.

This commit is contained in:
Fitorec 2012-06-04 07:57:14 -05:00 committed by mark_story
parent 207b918b59
commit c090845117

View file

@ -411,10 +411,10 @@ class ModelTask extends BakeTask {
$this->hr(); $this->hr();
for ($i = 1, $m = $defaultChoice / 2; $i < $m; $i++) { for ($i = 1, $m = $defaultChoice / 2; $i < $m; $i++) {
$str_aux = sprintf("%2d. %s", $i, $this->_validations[$i]); $strAux = sprintf("%2d. %s", $i, $this->_validations[$i]);
$str_aux = $str_aux.str_repeat(" ", 31 - strlen($str_aux)); $strAux = $strAux.str_repeat(" ", 31 - strlen($strAux));
$str_aux .= sprintf("%2d. %s", $m+$i, $this->_validations[$m+$i]); $strAux .= sprintf("%2d. %s", $m + $i, $this->_validations[$m + $i]);
$this->out($str_aux); $this->out($strAux);
} }
$this->out(__d('cake_console', "%s - Do not do any validation on this field.", $defaultChoice)); $this->out(__d('cake_console', "%s - Do not do any validation on this field.", $defaultChoice));
$this->hr(); $this->hr();