lithium\console\command\G11n
Extends
lithium\console\Command
The G11n
set of commands deals with the extraction and merging of message templates.
Source
class G11n extends \lithium\console\Command {
/**
* The main method of the command.
*
* @return void
*/
public function run() {}
/**
* Runs the `Extract` command.
*
* @return integer|boolean|void
*/
public function extract() {
$extract = new Extract(array('request' => $this->request));
return $extract->run();
}
}