Bluz\Tests\Router\RouterTest::providerForCustomRoutes PHP Method

providerForCustomRoutes() public method

public providerForCustomRoutes ( ) : array
return array
    public function providerForCustomRoutes()
    {
        return array(['/another-route.html', 'test', 'route-static'], ['/another-route.html?foo%5B0%5D=bar&foo%5B1%5D=baz', 'test', 'route-static', ['foo' => ['bar', 'baz']]], ['/test/param/42/', 'test', 'route-with-param', ['a' => 42]], ['/foo-bar-baz/', 'test', 'route-with-params', ['a' => 'foo', 'b' => 'bar', 'c' => 'baz']], ['/test/route-with-other-params/about', 'test', 'route-with-other-params', ['alias' => 'about']]);
    }