Asvae\ApiTester\Repositories\RouteRepository::get PHP Method

get() public method

public get ( array $match = [], array $except = [] ) : mixed
$match array
$except array
return mixed
    public function get($match = [], $except = [])
    {
        foreach ($this->repositories as $repository) {
            foreach ($repository->get($match, $except) as $route) {
                $this->routes->push($route);
            }
        }
        return $this->routes;
    }
RouteRepository