mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
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:
parent
1968312773
commit
89c2ce23b0
1 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -131,4 +131,4 @@ class ConsoleShell extends Shell {
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue