|
|
@@ -273,9 +273,7 @@ class Shell
|
|
|
public function startup()
|
|
|
{
|
|
|
if (!$this->param('requested')) {
|
|
|
- if (!$this->args) {
|
|
|
- $this->_welcome();
|
|
|
- }
|
|
|
+ $this->_welcome();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -286,13 +284,6 @@ class Shell
|
|
|
*/
|
|
|
protected function _welcome()
|
|
|
{
|
|
|
- $this->out();
|
|
|
- $this->out(sprintf('<info>Welcome to CakePHP %s Console</info>', 'v' . Configure::version()));
|
|
|
- $this->hr();
|
|
|
- $this->out(sprintf('App : %s', APP_DIR));
|
|
|
- $this->out(sprintf('Path: %s', APP));
|
|
|
- $this->out(sprintf('PHP : %s', phpversion()));
|
|
|
- $this->hr();
|
|
|
}
|
|
|
|
|
|
/**
|