コード例 #1
0
ファイル: rifRouting.php プロジェクト: elribonazo/riframework
	public function __construct(rifLng $lng, rifRequest $request, $routes){
		$this->lng = $lng;
		if(!is_array($routes)){
			rifException::configException(array(
				'message'=> $this->lng->__("Invalid routes format")
			));
		}
		$this->validateRoute($this->findRoute($request, $routes), $request);
	}