Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8648df5

Browse files
minor #50699 [DoctrineBridge] add missing UPGRADE notes for #50689 and update tests (alli83)
This PR was merged into the 6.3 branch. Discussion ---------- [DoctrineBridge] add missing UPGRADE notes for #50689 and update tests | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | no | New feature? | no | Deprecations? | yes | Tickets | | License | MIT | Doc PR | `$isSameDatabase` parameter was introduced in #48059. It has been added in order to know whether the database used by doctrine is the same as the one used by the component when integrating the latter with doctrine migrations. Also related to #50689 Commits ------- 5d2817d [DoctrineBridge] add missing UPGRADE notes for #50689
2 parents 43c8bde + 5d2817d commit 8648df5

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

UPGRADE-6.3.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
UPGRADE FROM 6.2 to 6.3
22
=======================
33

4+
Cache
5+
-----
6+
7+
* `DoctrineDbalAdapter` now takes an optional `$isSameDatabase` parameter
8+
49
Console
510
-------
611

@@ -22,6 +27,8 @@ DoctrineBridge
2227
* Deprecate `DoctrineDbalCacheAdapterSchemaSubscriber` in favor of `DoctrineDbalCacheAdapterSchemaListener`
2328
* Deprecate `MessengerTransportDoctrineSchemaSubscriber` in favor of `MessengerTransportDoctrineSchemaListener`
2429
* Deprecate `RememberMeTokenProviderDoctrineSchemaSubscriber` in favor of `RememberMeTokenProviderDoctrineSchemaListener`
30+
* `DoctrineTransport` now takes an optional `$isSameDatabase` parameter
31+
* `DoctrineTokenProvider` now takes an optional `$isSameDatabase` parameter
2532

2633
Form
2734
----

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

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

src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/DoctrineTransportTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ public function testConfigureSchema()
6464

6565
$connection->expects($this->once())
6666
->method('configureSchema')
67-
->with($schema, $dbalConnection);
67+
->with($schema, $dbalConnection, static fn () => true);
6868

69-
$transport->configureSchema($schema, $dbalConnection);
69+
$transport->configureSchema($schema, $dbalConnection, static fn () => true);
7070
}
7171

7272
private function getTransport(SerializerInterface $serializer = null, Connection $connection = null): DoctrineTransport

0 commit comments

Comments
 (0)