lithium\console\Command::_help PHP Method

_help() protected method

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
return boolean
    protected function _help()
    {
        $help = new Help(array('request' => $this->request, 'response' => $this->response, 'classes' => $this->_classes));
        return $help->run(get_class($this));
    }