[SoapBundle] Simplified conditional statement

This commit is contained in:
Francis Besset 2013-12-08 00:25:20 +01:00
parent 60e3714602
commit 1b4e262c60
1 changed files with 2 additions and 3 deletions

View File

@ -112,9 +112,8 @@ class RpcLiteralRequestMessageBinder implements MessageBinderInterface
$value = $this->processType($type->getType(), $value);
$messageBinder->writeProperty($property, $value);
}
if (!$type->isNillable() && null === $value) {
} elseif (!$type->isNillable()) {
// @TODO use xmlType instead of phpType
throw new \SoapFault('SOAP_ERROR_COMPLEX_TYPE', sprintf('"%s:%s" cannot be null.', ucfirst($phpType), $type->getName()));
}
}