Using $this->hr() instead of $this->out('------------') as per gwoo's request

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5172 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
chartjes 2007-05-24 16:34:07 +00:00
parent 1968312773
commit 89c2ce23b0

View file

@ -68,7 +68,7 @@ class ConsoleShell extends Shell {
break; break;
case 'models': case 'models':
$this->out('Model classes:'); $this->out('Model classes:');
$this->out('--------------'); $this->hr();
foreach ($this->models as $model) { foreach ($this->models as $model) {
$this->out(" - {$model}"); $this->out(" - {$model}");
} }
@ -105,7 +105,7 @@ class ConsoleShell extends Shell {
} }
} }
$this->out('----------'); $this->hr();
} }
} }
} }