Updated to work with latest version of Zend\Soap

This commit is contained in:
craigmarvelley
2012-01-04 11:47:45 +00:00
parent f0031e8923
commit d2cdc9ccad
3 changed files with 5 additions and 5 deletions

View File

@ -99,7 +99,7 @@ class RpcLiteralRequestMessageBinder implements MessageBinderInterface
$value = $this->processType($type->getValue(), $value);
if (!$type->isNillable() && null === $value) {
throw new \SoapFault('SOAP_ERROR_COMPLEX_TYPE', sprintf('"%s:%s" cannot be null.', ucfirst(Wsdl::translateType($phpType)), $type->getName()));
throw new \SoapFault('SOAP_ERROR_COMPLEX_TYPE', sprintf('"%s:%s" cannot be null.', ucfirst($phpType), $type->getName()));
}
}