/**
  * Outputs usage text on the standard output. Implement it in subclasses.
  *
  * @access public
  */
 function help()
 {
     if ($this->command != null) {
         $this->err("Unknown {$this->name} command '{$this->command}'.\nFor usage, try 'cake {$this->shell} help'.\n\n");
     } else {
         $this->Dispatch->help();
     }
 }
Exemple #2
0
	/**
	 * Outputs usage text on the standard output. Implement it in subclasses.
	 *
	 * @access public
	 */
	function help() {
		if ($this->command != null) {
			$this->err("Unknown {$this->name} command `{$this->command}`.");
			$this->err("For usage, try `cake {$this->shell} help`.", 2);
		} else {
			$this->Dispatch->help();
		}
	}