8000 Merge branch '5.4' into 6.3 · symfony/symfony@645bc90 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 645bc90

Browse files
Merge branch '5.4' into 6.3
* 5.4: [DoctrineBridge] Silence ORM deprecation add missing default-doctrine-dbal-provider cache pool attribute to XSD
2 parents 785b66a + 2c8e5fd commit 645bc90

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/Symfony/Bridge/Doctrine/Tests/DoctrineTestHelper.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ public static function createTestConfiguration(): Configuration
7373
$config->setSchemaManagerFactory(new DefaultSchemaManagerFactory());
7474
}
7575

76+
if (method_exists(Configuration::class, 'setLazyGhostObjectEnabled')) {
77+
$config->setLazyGhostObjectEnabled(true);
78+
}
79+
7680
return $config;
7781
}
7882

src/Symfony/Bundle/FrameworkBundle/Resources/config/schema/symfony-1.0.xsd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@
339339
<xsd:element name="default-psr6-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
340340
<xsd:element name="default-redis-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
341341
<xsd:element name="default-memcached-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
342+
<xsd:element name="default-doctrine-dbal-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
342343
<xsd:element name="default-pdo-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
343344
<xsd:element name="pool" type="cache_pool" minOccurs="0" maxOccurs="unbounded" />
344345
</xsd:sequence>

0 commit comments

Comments
 (0)
0