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

generateUriStandardProvider() public method

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