run() public method

Dispatch a HTTP request to a front controller.
public run ( ) : void
return void
コード例 #1
0
ファイル: Application.php プロジェクト: norbe/framework
	public function run()
	{
		if (PHP_SAPI == "cli") {
			$this->context->console->run();
		} else {
			parent::run();
		}
	}