eZ\Publish\Core\MVC\Symfony\Security\Tests\HttpUtilsTest::generateUriProvider PHP Method

generateUriProvider() public method

public generateUriProvider ( )
    public function generateUriProvider()
    {
        return array(array('http://localhost/foo/bar', false, null, 'http://localhost/foo/bar'), array('http://localhost/foo/bar?some=thing&toto=tata', false, null, 'http://localhost/foo/bar?some=thing&toto=tata'), array('/foo/bar?some=thing&toto=tata', false, '/test_access', 'http://ezpublish.dev/test_access/foo/bar?some=thing&toto=tata'), array('/foo/bar', false, '/blabla', 'http://ezpublish.dev/blabla/foo/bar'), array('some_route_name', true, null, 'http://ezpublish.dev/some/route'));
    }