mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 14:28:27 +08:00
Extract default help header to protected method.
This commit is contained in:
@ -182,7 +182,7 @@ class HelpController extends Controller
|
||||
protected function getDefaultHelp()
|
||||
{
|
||||
$commands = $this->getCommandDescriptions();
|
||||
$this->stdout("\nThis is Yii version " . \Yii::getVersion() . ".\n");
|
||||
$this->stdout($this->getDefaultHelpHeader());
|
||||
if (!empty($commands)) {
|
||||
$this->stdout("\nThe following commands are available:\n\n", Console::BOLD);
|
||||
$len = 0;
|
||||
@ -437,4 +437,13 @@ class HelpController extends Controller
|
||||
{
|
||||
return basename(Yii::$app->request->scriptFile);
|
||||
}
|
||||
|
||||
/**
|
||||
* Display a default help header.
|
||||
* @return string default help header.
|
||||
*/
|
||||
protected function getDefaultHelpHeader()
|
||||
{
|
||||
return "\nThis is Yii version " . \Yii::getVersion() . ".\n";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user