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

Skip to content

Commit e206417

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

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
@@ -62,6 +62,10 @@ public static function createTestConfiguration(): Configuration
6262
$config->setSchemaManagerFactory(new DefaultSchemaManagerFactory());
6363
}
6464

65+
if (method_exists(Configuration::class, 'setLazyGhostObjectEnabled')) {
66+
$config->setLazyGhostObjectEnabled(true);
67+
}
68+
6569
return $config;
6670
}
6771

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