Mpociot\ApiDoc\Commands\GenerateDocumentation::getRoutes PHP Method

getRoutes() private method

private getRoutes ( ) : mixed
return mixed
    private function getRoutes()
    {
        if ($this->option('router') === 'laravel') {
            return Route::getRoutes();
        } else {
            return app('Dingo\\Api\\Routing\\Router')->getRoutes()[$this->option('routePrefix')];
        }
    }