Example #1
0
 /**
  * @param string $method
  * @param string $url
  * @return mixed
  */
 public static function resolve($method, $url)
 {
     $Router = new Router($method, $url);
     require Loader::APPPATH() . 'Config/Route.php';
     return $Router->result();
 }