Extends
lithium\core\Object
Invokes the `Help` command.
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.
Returns
booleanSource
protected function _help() {
$help = new Help(array(
'request' => $this->request,
'response' => $this->response,
'classes' => $this->_classes
));
return $help->run(get_class($this));
}