for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SymfonyBundles\RedisBundle\Redis;
class Factory implements FactoryInterface
{
/**
* @var string
*/
protected static $clientClass = Client::class;
* {@inheritdoc}
public static function create(array $parameters = [], array $options = []): ClientInterface
return new static::$clientClass($parameters, $options);
}