We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81492d6 commit 2ae4f1eCopy full SHA for 2ae4f1e
tests/Integration/ClientIntegrationTest.php
@@ -387,11 +387,13 @@ public function testRedundantAcquire(): void
387
$reflection = new ReflectionClass($driver);
388
389
$poolProp = $reflection->getProperty('pool');
390
+ $poolProp->setAccessible(true);
391
/** @var ConnectionPool $pool */
392
$pool = $poolProp->getValue($driver);
393
394
$reflection = new ReflectionClass($pool);
395
$connectionProp = $reflection->getProperty('activeConnections');
396
+ $connectionProp->setAccessible(true);
397
/** @var array $activeConnections */
398
$activeConnections = $connectionProp->getValue($pool);
399
0 commit comments