Kohkimakimoto\Worker\HttpServer\HttpRouter::configureRoutes PHP Method

configureRoutes() public method

public configureRoutes ( )
    public function configureRoutes()
    {
        $this->routes = new RouteCollection();
        $this->routes->add('index', new Route('/', ['_action' => 'index']));
        $this->routes->add('job', new Route('/{name}', ['_action' => 'job']));
    }