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

passwordValues() public static method

public static passwordValues ( ) : array
return array
    public static function passwordValues()
    {
        return array(array('redis://localhost', null), array('redis://localhost/1', null), array('redis://pw@localhost:63790/10', 'pw'), array('redis://user:pw@localhost:63790/10', 'pw'), array('redis://user:pw:withcolon@localhost:63790/10', 'pw:withcolon'), array('redis://Pw%3AColon%25@localhost:63790/10', 'Pw:Colon%'), array('redis://p%40w@localhost:63790/10', 'p@w'), array('redis://mB(.z9},6o?zl>v!LM76A]lCg77,;.@localhost:63790/10', 'mB(.z9},6o?zl>v!LM76A]lCg77,;.'), array('redis://127.0.0.1', null), array('redis://127.0.0.1/1', null), array('redis://[email protected]:63790/10', 'pw'), array('redis://p%[email protected]:63790/10', 'p@w'), array('redis://mB(.z9},6o?zl>v!LM76A]lCg77,;[email protected]:63790/10', 'mB(.z9},6o?zl>v!LM76A]lCg77,;.'), array('redis:///redis.sock', null), array('redis:///redis.sock/1', null), array('redis://pw@/redis.sock/10', 'pw'), array('redis://p%40w@/redis.sock/10', 'p@w'), array('redis://mB(.z9},6o?zl>v!LM76A]lCg77,;.@/redis.sock/10', 'mB(.z9},6o?zl>v!LM76A]lCg77,;.'));
    }