ReflectionEmbeddedProperty
should be like any ReflectionProperty
, and should therefore extend it for type compatibility
This commit is contained in:
parent
112fdf46d0
commit
b4a23e97a9
1 changed files with 7 additions and 14 deletions
|
@ -31,7 +31,7 @@ use ReflectionProperty;
|
||||||
*
|
*
|
||||||
* TODO: Move this class into Common\Reflection
|
* TODO: Move this class into Common\Reflection
|
||||||
*/
|
*/
|
||||||
class ReflectionEmbeddedProperty
|
class ReflectionEmbeddedProperty extends ReflectionProperty
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @var ReflectionProperty
|
* @var ReflectionProperty
|
||||||
|
@ -43,11 +43,6 @@ class ReflectionEmbeddedProperty
|
||||||
*/
|
*/
|
||||||
private $childProperty;
|
private $childProperty;
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
private $class;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var Instantiator|null
|
* @var Instantiator|null
|
||||||
*/
|
*/
|
||||||
|
@ -62,15 +57,14 @@ class ReflectionEmbeddedProperty
|
||||||
{
|
{
|
||||||
$this->parentProperty = $parentProperty;
|
$this->parentProperty = $parentProperty;
|
||||||
$this->childProperty = $childProperty;
|
$this->childProperty = $childProperty;
|
||||||
$this->class = (string) $class;
|
|
||||||
|
parent::__construct($childProperty->getDeclaringClass()->getName(), $childProperty->getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $object
|
* {@inheritDoc}
|
||||||
*
|
|
||||||
* @return object|null
|
|
||||||
*/
|
*/
|
||||||
public function getValue($object)
|
public function getValue($object = null)
|
||||||
{
|
{
|
||||||
$embeddedObject = $this->parentProperty->getValue($object);
|
$embeddedObject = $this->parentProperty->getValue($object);
|
||||||
|
|
||||||
|
@ -82,10 +76,9 @@ class ReflectionEmbeddedProperty
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param object $object
|
* {@inheritDoc}
|
||||||
* @param mixed $value
|
|
||||||
*/
|
*/
|
||||||
public function setValue($object, $value)
|
public function setValue($object, $value = null)
|
||||||
{
|
{
|
||||||
$embeddedObject = $this->parentProperty->getValue($object);
|
$embeddedObject = $this->parentProperty->getValue($object);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue