Asvae\ApiTester\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(['as' => 'api-tester.', 'prefix' => config('api-tester.route'), 'namespace' => $this->getNamespace(), 'middleware' => $this->getMiddleware()], function () {
            $this->requireRoutes();
        });
    }