1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Using instantiator to work with internal PHP classes as embeddables

This commit is contained in:
Marco Pivetta 2014-12-05 13:00:54 +01:00
parent a8b0ac82b4
commit 112fdf46d0

View file

@ -18,6 +18,8 @@
*/ */
namespace Doctrine\ORM\Mapping; namespace Doctrine\ORM\Mapping;
use Doctrine\Instantiator\Instantiator;
use ReflectionProperty; use ReflectionProperty;
/** /**
@ -46,6 +48,11 @@ class ReflectionEmbeddedProperty
*/ */
private $class; private $class;
/**
* @var Instantiator|null
*/
private $instantiator;
/** /**
* @param ReflectionProperty $parentProperty * @param ReflectionProperty $parentProperty
* @param ReflectionProperty $childProperty * @param ReflectionProperty $childProperty
@ -83,7 +90,10 @@ class ReflectionEmbeddedProperty
$embeddedObject = $this->parentProperty->getValue($object); $embeddedObject = $this->parentProperty->getValue($object);
if (null === $embeddedObject) { if (null === $embeddedObject) {
$embeddedObject = unserialize(sprintf('O:%d:"%s":0:{}', strlen($this->class), $this->class)); $this->instantiator = $this->instantiator ?: new Instantiator();
$embeddedObject = $this->instantiator->instantiate($this->class);
$this->parentProperty->setValue($object, $embeddedObject); $this->parentProperty->setValue($object, $embeddedObject);
} }