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 b9e5750 commit 7ff8cb8Copy full SHA for 7ff8cb8
pkg/enqueue-bundle/Tests/Unit/Consumption/Extension/DoctrinePingConnectionExtensionTest.php
@@ -41,7 +41,7 @@ public function testShouldNotReconnectIfConnectionIsOK()
41
->expects($this->never())
42
->method('close')
43
;
44
- if (method_exists($connection, 'connect')) {
+ if (method_exists(Connection::class, 'connect')) {
45
// DBAL < 4
46
$connection->expects($this->never())
47
->method('connect');
@@ -87,7 +87,7 @@ public function testShouldDoesReconnectIfConnectionFailed()
87
->expects($this->once())
88
89
90
91
92
$connection->expects($this->once())
93
0 commit comments