Esempio n. 1
0
 /**
  * Search for a match route in the last of routes based on a relative url from
  * the current request.
  * 
  * @param Route $route the instance of the Route to use in the current request.
  * @param string $url relative url of the current request. 
  * @return mixed \Puzzlout\Framework\Core\Route | \Exception
  * @throws \Exception Is thrown if FrameworkConstants::"APP_BASE_URL" is not set. 
  */
 public function getRoute(Route $route, $url)
 {
     $route->Init($url);
 }