#1213 - DDC-3437 - renaming variables/alignment/clarifications in docblocks
This commit is contained in:
parent
357292de44
commit
cf1b16a505
1 changed files with 13 additions and 13 deletions
|
@ -34,35 +34,35 @@ use ReflectionProperty;
|
||||||
class ReflectionEmbeddedProperty extends ReflectionProperty
|
class ReflectionEmbeddedProperty extends ReflectionProperty
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @var ReflectionProperty
|
* @var ReflectionProperty reflection property of the class where the embedded object has to be put
|
||||||
*/
|
*/
|
||||||
private $parentProperty;
|
private $parentProperty;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var ReflectionProperty
|
* @var ReflectionProperty reflection property of the embedded object
|
||||||
*/
|
*/
|
||||||
private $childProperty;
|
private $childProperty;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string name of the embedded class to be eventually instantiated
|
||||||
|
*/
|
||||||
|
private $embeddedClass;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var Instantiator|null
|
* @var Instantiator|null
|
||||||
*/
|
*/
|
||||||
private $instantiator;
|
private $instantiator;
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
private $reflectionClass;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionProperty $parentProperty
|
* @param ReflectionProperty $parentProperty
|
||||||
* @param ReflectionProperty $childProperty
|
* @param ReflectionProperty $childProperty
|
||||||
* @param string $class
|
* @param string $embeddedClass
|
||||||
*/
|
*/
|
||||||
public function __construct(ReflectionProperty $parentProperty, ReflectionProperty $childProperty, $class)
|
public function __construct(ReflectionProperty $parentProperty, ReflectionProperty $childProperty, $embeddedClass)
|
||||||
{
|
{
|
||||||
$this->parentProperty = $parentProperty;
|
$this->parentProperty = $parentProperty;
|
||||||
$this->childProperty = $childProperty;
|
$this->childProperty = $childProperty;
|
||||||
$this->reflectionClass = $class;
|
$this->embeddedClass = (string) $embeddedClass;
|
||||||
|
|
||||||
parent::__construct($childProperty->getDeclaringClass()->getName(), $childProperty->getName());
|
parent::__construct($childProperty->getDeclaringClass()->getName(), $childProperty->getName());
|
||||||
}
|
}
|
||||||
|
@ -91,7 +91,7 @@ class ReflectionEmbeddedProperty extends ReflectionProperty
|
||||||
if (null === $embeddedObject) {
|
if (null === $embeddedObject) {
|
||||||
$this->instantiator = $this->instantiator ?: new Instantiator();
|
$this->instantiator = $this->instantiator ?: new Instantiator();
|
||||||
|
|
||||||
$embeddedObject = $this->instantiator->instantiate($this->reflectionClass);
|
$embeddedObject = $this->instantiator->instantiate($this->embeddedClass);
|
||||||
|
|
||||||
$this->parentProperty->setValue($object, $embeddedObject);
|
$this->parentProperty->setValue($object, $embeddedObject);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue