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

databaseValues() public static method

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