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

boolean

Source

						protected function _help() {
		$help = new Help(array(
			'request' => $this->request,
			'response' => $this->response,
			'classes' => $this->_classes
		));
		return $help->run(get_class($this));
	}