Owl\Providers\RouteServiceProvider::map PHP Method

map() public method

Define the routes for the application.
public map ( Router $router ) : void
$router Illuminate\Routing\Router
return void
    public function map(Router $router)
    {
        $router->group(['namespace' => $this->namespace], function ($router) {
            require app_path('Http/routes.php');
        });
    }
RouteServiceProvider