blink\core\Application::registerRoutes PHP 메소드

registerRoutes() 보호된 메소드

protected registerRoutes ( )
    protected function registerRoutes()
    {
        $this->dispatcher = FastRoute\simpleDispatcher(function (FastRoute\RouteCollector $r) {
            foreach ($this->routes as list($method, $route, $handler)) {
                $r->addRoute($method, $route, $handler);
            }
        });
    }