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 3d9061f commit ca5dfedCopy full SHA for ca5dfed
tests/Functional/IntegrationTest.php
@@ -13,6 +13,7 @@
13
14
namespace Snc\RedisBundle\Tests\Functional;
15
16
+use Symfony\Component\HttpFoundation\Request;
17
use Snc\RedisBundle\DataCollector\RedisDataCollector;
18
use Snc\RedisBundle\Logger\RedisLogger;
19
use Snc\RedisBundle\Tests\Functional\App\Kernel;
@@ -80,7 +81,7 @@ public function testIntegration(): void
80
81
/** @group legacy */
82
public function testPredisReplication(): void
83
{
- $this->client->request('GET', '/predis_replication');
84
+ $this->client->request(Request::METHOD_GET, '/predis_replication');
85
86
$this->assertSame(Response::HTTP_OK, $this->client->getResponse()->getStatusCode());
87
}
0 commit comments