We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05bfb14 commit e5aaa36Copy full SHA for e5aaa36
tests/DependencyInjection/SncRedisExtensionEnvTest.php
@@ -6,6 +6,7 @@
6
7
use LogicException;
8
use PHPUnit\Framework\TestCase;
9
+use Predis\Client;
10
use Redis;
11
use RedisCluster;
12
use RedisSentinel;
@@ -46,7 +47,7 @@ public function testPredisDefaultParameterConfig(): void
46
47
48
$clientDefinition = $container->findDefinition('snc_redis.default');
49
- $this->assertSame('Predis\Client', $clientDefinition->getClass());
50
+ $this->assertSame(Client::class, $clientDefinition->getClass());
51
$this->assertSame(
52
[
53
'parameters' => [
0 commit comments