Ejemplo n.º 1
0
 protected function _loadRoutes()
 {
     $routepath = __MY_CONFIGS . "/routes.yml";
     if (!file_exists($routepath)) {
         throw new RouteLoadException();
     }
     $loader = new FileLoader($routepath, true);
     $loader->read();
     $loader->getSha1();
 }