Fixed issue #8
This commit is contained in:
parent
e9864b1d02
commit
ade1584448
|
@ -79,12 +79,14 @@ class RpcLiteralResponseMessageBinder implements MessageBinderInterface
|
||||||
$p = $r->getProperty($type->getName());
|
$p = $r->getProperty($type->getName());
|
||||||
if ($p->isPublic()) {
|
if ($p->isPublic()) {
|
||||||
$value = $message->{$type->getName()};
|
$value = $message->{$type->getName()};
|
||||||
|
|
||||||
|
$message->{$type->getName()} = $this->processType($type->getValue(), $value);
|
||||||
} else {
|
} else {
|
||||||
$p->setAccessible(true);
|
$p->setAccessible(true);
|
||||||
$value = $p->getValue($message);
|
$value = $p->getValue($message);
|
||||||
}
|
|
||||||
|
|
||||||
$value = $this->processType($type->getValue(), $value);
|
$p->setValue($message, $this->processType($type->getValue(), $value));
|
||||||
|
}
|
||||||
|
|
||||||
if (!$type->isNillable() && null === $value) {
|
if (!$type->isNillable() && null === $value) {
|
||||||
throw new \InvalidArgumentException(sprintf('"%s::%s" cannot be null.', $class, $type->getName()));
|
throw new \InvalidArgumentException(sprintf('"%s::%s" cannot be null.', $class, $type->getName()));
|
||||||
|
|
Loading…
Reference in New Issue