Skip to content

Commit b3f0916

Browse files
Merge branch '6.4' into 7.1
* 6.4: Fix merge
2 parents 597e48c + ada6d13 commit b3f0916

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/expected-missing-return-types.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Run these steps to update this file:
2-
sed -i 's/ *"\*\*\/Tests\/"//' composer.json
2+
sed -i 's/ *"\*\*\/Tests\/",//' composer.json
33
composer u -o
44
SYMFONY_PATCH_TYPE_DECLARATIONS='force=2&php=8.1' php .github/patch-types.php
55
head=$(sed '/^diff /Q' .github/expected-missing-return-types.diff)

src/Symfony/Bridge/Doctrine/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)) {

src/Symfony/Bridge/Doctrine/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)