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

providerForDefaultRoutes() public method

public providerForDefaultRoutes ( ) : array
return array
    public function providerForDefaultRoutes()
    {
        return array(['/test/test', 'test', 'test', []], ['/test/test/foo/bar', 'test', 'test', ['foo' => 'bar']], ['/test/test?foo%5B0%5D=bar&foo%5B1%5D=baz', 'test', 'test', ['foo' => ['bar', 'baz']]], ['/test', 'test', null, []], ['/test', 'test', 'index', []], ['/test/index/foo/bar', 'test', 'index', ['foo' => 'bar']], ['/index/test', null, 'test', []], ['/index/test', 'index', 'test', []], ['/index/test/foo/bar', 'index', 'test', ['foo' => 'bar']]);
    }