Snc\RedisBundle\Tests\DependencyInjection\Configuration\RedisDsnTest::hostValues PHP Method

hostValues() public static method

public static hostValues ( ) : array
return array
    public static function hostValues()
    {
        return array(array('redis://localhost', 'localhost'), array('redis://localhost/1', 'localhost'), array('redis://localhost:63790', 'localhost'), array('redis://localhost:63790/10', 'localhost'), array('redis://pw@localhost:63790/10', 'localhost'), array('redis://127.0.0.1', '127.0.0.1'), array('redis://127.0.0.1/1', '127.0.0.1'), array('redis://127.0.0.1:63790', '127.0.0.1'), array('redis://127.0.0.1:63790/10', '127.0.0.1'), array('redis://[email protected]:63790/10', '127.0.0.1'));
    }