applying required fixes for DDC-2432
This commit is contained in:
parent
07c207081e
commit
22c9f6ebec
1 changed files with 14 additions and 0 deletions
|
@ -117,6 +117,9 @@ class ProxyFactory extends AbstractProxyFactory
|
||||||
{
|
{
|
||||||
if ($classMetadata->getReflectionClass()->hasMethod('__wakeup')) {
|
if ($classMetadata->getReflectionClass()->hasMethod('__wakeup')) {
|
||||||
return function (BaseProxy $proxy) use ($entityPersister, $classMetadata) {
|
return function (BaseProxy $proxy) use ($entityPersister, $classMetadata) {
|
||||||
|
$initializer = $proxy->__getInitializer();
|
||||||
|
$cloner = $proxy->__getCloner();
|
||||||
|
|
||||||
$proxy->__setInitializer(null);
|
$proxy->__setInitializer(null);
|
||||||
$proxy->__setCloner(null);
|
$proxy->__setCloner(null);
|
||||||
|
|
||||||
|
@ -136,12 +139,19 @@ class ProxyFactory extends AbstractProxyFactory
|
||||||
$proxy->__wakeup();
|
$proxy->__wakeup();
|
||||||
|
|
||||||
if (null === $entityPersister->load($classMetadata->getIdentifierValues($proxy), $proxy)) {
|
if (null === $entityPersister->load($classMetadata->getIdentifierValues($proxy), $proxy)) {
|
||||||
|
$proxy->__setInitializer($initializer);
|
||||||
|
$proxy->__setCloner($cloner);
|
||||||
|
$proxy->__setInitialized(false);
|
||||||
|
|
||||||
throw new EntityNotFoundException();
|
throw new EntityNotFoundException();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return function (BaseProxy $proxy) use ($entityPersister, $classMetadata) {
|
return function (BaseProxy $proxy) use ($entityPersister, $classMetadata) {
|
||||||
|
$initializer = $proxy->__getInitializer();
|
||||||
|
$cloner = $proxy->__getCloner();
|
||||||
|
|
||||||
$proxy->__setInitializer(null);
|
$proxy->__setInitializer(null);
|
||||||
$proxy->__setCloner(null);
|
$proxy->__setCloner(null);
|
||||||
|
|
||||||
|
@ -160,6 +170,10 @@ class ProxyFactory extends AbstractProxyFactory
|
||||||
$proxy->__setInitialized(true);
|
$proxy->__setInitialized(true);
|
||||||
|
|
||||||
if (null === $entityPersister->load($classMetadata->getIdentifierValues($proxy), $proxy)) {
|
if (null === $entityPersister->load($classMetadata->getIdentifierValues($proxy), $proxy)) {
|
||||||
|
$proxy->__setInitializer($initializer);
|
||||||
|
$proxy->__setCloner($cloner);
|
||||||
|
$proxy->__setInitialized(false);
|
||||||
|
|
||||||
throw new EntityNotFoundException();
|
throw new EntityNotFoundException();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue