Use === instead of == where possible

This commit is contained in:
Alexander Makarov
2015-10-10 01:04:35 +03:00
parent 4ecafe653c
commit 1b3770fd21
31 changed files with 59 additions and 59 deletions

View File

@ -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");
}