lithium\console\Command::_help PHP Метод

_help() защищенный Метод

The invoked Help command will take over request and response objects of the originally invoked command. Thus the response of the Help command becomes the response of the original one.
protected _help ( ) : boolean
Результат boolean
    protected function _help()
    {
        $help = new Help(array('request' => $this->request, 'response' => $this->response, 'classes' => $this->_classes));
        return $help->run(get_class($this));
    }