mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-02 06:58:49 +02:00
N°5809 Update Symfony artifacts from 6.4.0 to 6.4.2
symfony/console symfony/dotenv symfony/framework-bundle symfony/http-foundation symfony/http-kernel symfony/var-dumper symfony/web-profiler-bundle
This commit is contained in:
@@ -166,8 +166,9 @@ trait LazyGhostTrait
|
||||
if ($state && (null === $scope || isset($propertyScopes["\0$scope\0$name"]))) {
|
||||
if (LazyObjectState::STATUS_INITIALIZED_FULL === $state->status) {
|
||||
// Work around php/php-src#12695
|
||||
$property = $propertyScopes[null === $scope ? $name : "\0$scope\0$name"][3]
|
||||
?? (Hydrator::$propertyScopes[$this::class] = Hydrator::getPropertyScopes($this::class))[3];
|
||||
$property = null === $scope ? $name : "\0$scope\0$name";
|
||||
$property = $propertyScopes[$property][3]
|
||||
?? Hydrator::$propertyScopes[$this::class][$property][3] = new \ReflectionProperty($scope ?? $class, $name);
|
||||
} else {
|
||||
$property = null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user