LaravelBA\RouteBinder\RouteBinderServiceProvider::map PHP Method

map() public method

Register routes on boot.
public map ( Illuminate\Contracts\Routing\Registrar $router ) : void
$router Illuminate\Contracts\Routing\Registrar
return void
    public function map(Registrar $router)
    {
        foreach ($this->getRoutes() as $binder) {
            $binder->addRoutes($router);
        }
    }