You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for PHP 8.4 Lazy Objects RFC with configuration flag (#11853)
* Introduce PHP 8.4 lazy proxy/ghost API.
* Call setRawValueWithoutLazyInitialization for support with lazy proxy.
* Refactorings
* Revert test change partially and skip with lazy objects.
* Houskeeping: phpcs
* Run with ENABLE_LAZY_PROXY=1 in php 8.4 matrix.
* Fix ci
* Transient properties are not skipping lazy initialization anymore, to expensive and could lead to errors. Adjust lifecycle test that uses transient properittes for assertions.
* Restore behavior preventing property hook use in 8.4 in unsupported coditions
* Add \ReflectionClass::SKIP_INITIALIZATION_ON_SERIALIZE
Co-authored-by: Nicolas Grekas <[email protected]>
* Rename isNativeLazyObjectsEnabled/enableNativeLazyObjects.
* Housekeeping: phpcs
* Update advanced-configuration docs and make proxy config variables not required anymore with native lazy objects.
* Move code around
* Apply suggestions from code review
Co-authored-by: Grégoire Paris <[email protected]>
* Pick suggestions
---------
Co-authored-by: Nicolas Grekas <[email protected]>
Co-authored-by: Grégoire Paris <[email protected]>
Copy file name to clipboardexpand all lines: phpstan-baseline.neon
+1-7
Original file line number
Diff line number
Diff line change
@@ -583,7 +583,7 @@ parameters:
583
583
path:src/EntityManager.php
584
584
585
585
-
586
-
message:'#^Method Doctrine\\ORM\\EntityManager\:\:getReference\(\) should return \(T of object\)\|null but returns Doctrine\\ORM\\Proxy\\InternalProxy\.$#'
586
+
message:'#^Method Doctrine\\ORM\\EntityManager\:\:getReference\(\) should return \(T of object\)\|null but returns object\.$#'
587
587
identifier:return.type
588
588
count:1
589
589
path:src/EntityManager.php
@@ -2322,12 +2322,6 @@ parameters:
2322
2322
count:1
2323
2323
path:src/Proxy/ProxyFactory.php
2324
2324
2325
-
-
2326
-
message:'#^Method Doctrine\\ORM\\Proxy\\ProxyFactory\:\:getProxy\(\) return type with generic interface Doctrine\\ORM\\Proxy\\InternalProxy does not specify its types\: T$#'
2327
-
identifier:missingType.generics
2328
-
count:1
2329
-
path:src/Proxy/ProxyFactory.php
2330
-
2331
2325
-
2332
2326
message:'#^Method Doctrine\\ORM\\Proxy\\ProxyFactory\:\:loadProxyClass\(\) has parameter \$class with generic interface Doctrine\\Persistence\\Mapping\\ClassMetadata but does not specify its types\: T$#'
if (PHP_VERSION_ID >= 80400 && count($property->getHooks()) > 0) {
307
+
thrownewLogicException('Doctrine ORM does not support property hooks without also enabling Configuration::enableNativeLazyObjects(true). Check https://github.com/doctrine/orm/issues/11624 for details of versions that support property hooks.');
0 commit comments