Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
116cdf8
#11977 implemented simplistic (and ugly) batch handing of `INSERT` op…
Ocramius Jun 11, 2025
4a24860
#11977 isolated `INSERT` batch generation to own `@internal` performa…
Ocramius Jun 11, 2025
259f83b
#11977 added test coverage verifying that persisters are being used t…
Ocramius Jun 11, 2025
ad48737
#11977 hardened `InsertBatchTest` to check entity types of sequential…
Ocramius Jun 11, 2025
658940d
#11977 only perform batching if/when the `AssignedGenerator` is in use
Ocramius Jun 11, 2025
21b144f
#11977 removed unused type-hint, which can be completely inferred by …
Ocramius Jun 11, 2025
4e6b5a1
#11977 provided method documentation / example, as per @greg0ire's fe…
Ocramius Jun 11, 2025
79cc70a
#11977 expanded test coverage to check interleaved assigned-id vs gen…
Ocramius Jun 11, 2025
5afadf1
Add console completion for entityName param of orm:mapping:describe c…
stlgaits Jun 27, 2025
79e103c
Merge pull request #11978 from Ocramius/feature/#11977-batch-handling…
greg0ire Jun 28, 2025
8a5dfc8
Merge pull request #12037 from stlgaits/mapping-describe-completion
greg0ire Jun 29, 2025
c04bfb7
Only throw PHP 8.4 requirement exception when enabling native lazy ob…
beberlei Jun 30, 2025
b41d9da
do not register the legacy proxy class name resolver with enabled nat…
xabbuh Jun 30, 2025
dddcc50
Merge pull request #12039 from xabbuh/pr-12036
greg0ire Jun 30, 2025
8005333
Merge pull request #12044 from doctrine/3.4.x
greg0ire Jun 30, 2025
e67fa53
Merge pull request #12043 from beberlei/Bugfix-DisableNativeLazyLogic…
greg0ire Jun 30, 2025
7f40422
Merge remote-tracking branch 'origin/3.4.x' into 3.5.x
greg0ire Jul 1, 2025
6deec36
Merge pull request #12046 from greg0ire/3.5.x
greg0ire Jul 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Mapping/ClassMetadataFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ class ClassMetadataFactory extends AbstractClassMetadataFactory

public function setEntityManager(EntityManagerInterface $em): void
{
parent::setProxyClassNameResolver(new DefaultProxyClassNameResolver());
if (! $em->getConfiguration()->isNativeLazyObjectsEnabled()) {
parent::setProxyClassNameResolver(new DefaultProxyClassNameResolver());
}

$this->em = $em;
}
Expand Down