Skip to content

Commit dbbecf5

Browse files
Merge branch '6.3' into 6.4
* 6.3: [Validator] Add missing validator translations in Polish language [HttpClient] Fix encoding some characters in query strings [HttpKernel] make RequestPayloadValueResolver:resolve() throw on variadic argument [SecurityBundle] Remove last usages of tag `security.remember_me_aware` [VarDumper] Dumping DateTime throws error if getTimezone is false Only update autoload_runtime.php when it changed [FrameworkBundle] Fix secrets:list not displaying local vars [Intl] Update the ICU data to 73.2 [DoctrineBridge] add missing UPGRADE notes for #50689 [HttpClient] Force int conversion for floated multiplier for GenericRetryStrategy [Security] Fix log message in OidcTokenHandler Don't mark RedispatchMessage as internal [FrameworkBundle] Ignore missing directories in about command Revert "[Messenger] Respect `isRetryable` decision of the retry strategy when deciding if failed message should be re-delivered" [Validator] Add the `message` option to the `PasswordStrength` constraint [Validator][Translator] Fix xlf files for en & fr translations. Bug introduced by #50590 CS fix Add missing EN and FR translations for newest constraints [HttpClient] Remove final keyword on AsyncResponse [DependencyInjection] Fix support for `false` boolean env vars
2 parents 13e6efd + 594263c commit dbbecf5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/SchemaListener/DoctrineDbalCacheAdapterSchemaListenerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function testPostGenerateSchema()
3535
$dbalAdapter = $this->createMock(DoctrineDbalAdapter::class);
3636
$dbalAdapter->expects($this->once())
3737
->method('configureSchema')
38-
->with($schema, $dbalConnection);
38+
->with($schema, $dbalConnection, fn () => true);
3939

4040
$subscriber = new DoctrineDbalCacheAdapterSchemaListener([$dbalAdapter]);
4141
$subscriber->postGenerateSchema($event);

Tests/SchemaListener/MessengerTransportDoctrineSchemaListenerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function testPostGenerateSchema()
3838
$doctrineTransport = $this->createMock(DoctrineTransport::class);
3939
$doctrineTransport->expects($this->once())
4040
->method('configureSchema')
41-
->with($schema, $dbalConnection);
41+
->with($schema, $dbalConnection, fn () => true);
4242
$otherTransport = $this->createMock(TransportInterface::class);
4343
$otherTransport->expects($this->never())
4444
->method($this->anything());

0 commit comments

Comments
 (0)