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

#1213 - DDC-3437 - renaming variables/alignment/clarifications in docblocks

This commit is contained in:
Marco Pivetta 2014-12-08 01:22:20 +01:00
parent 357292de44
commit cf1b16a505

View file

@ -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);
} }