Skip to content

Commit b0c050b

Browse files
Merge branch '7.1' into 7.2
* 7.1: Fix merge
2 parents 9894e57 + 86176af commit b0c050b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Security/RememberMe/DoctrineTokenProviderPostgresTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static function setUpBeforeClass(): void
2121
}
2222
}
2323

24-
protected function bootstrapProvider()
24+
protected function bootstrapProvider(): DoctrineTokenProvider
2525
{
2626
$config = class_exists(ORMSetup::class) ? ORMSetup::createConfiguration(true) : new Configuration();
2727
if (class_exists(DefaultSchemaManagerFactory::class)) {

Tests/Security/RememberMe/DoctrineTokenProviderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public function testVerifyOutdatedTokenAfterParallelRequestFailsAfter60Seconds()
117117
$this->assertFalse($provider->verifyToken($token, $oldValue));
118118
}
119119

120-
private function bootstrapProvider(): DoctrineTokenProvider
120+
protected function bootstrapProvider(): DoctrineTokenProvider
121121
{
122122
$config = ORMSetup::createConfiguration(true);
123123
$config->setSchemaManagerFactory(new DefaultSchemaManagerFactory());

0 commit comments

Comments
 (0)