mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 14:28:27 +08:00
Use === instead of == where possible
This commit is contained in:
@ -308,7 +308,7 @@ class HelpController extends Controller
|
||||
}
|
||||
|
||||
$description = $controller->getActionHelp($action);
|
||||
if ($description != '') {
|
||||
if ($description !== '') {
|
||||
$this->stdout("\nDESCRIPTION\n", Console::BOLD);
|
||||
$this->stdout("\n$description\n\n");
|
||||
}
|
||||
|
Reference in New Issue
Block a user