Merge pull request #27 from boxuk/master

Updated code to work with more recent versions of Zend library dependencies
This commit is contained in:
Francis Besset
2012-07-31 23:35:26 -07:00
4 changed files with 8 additions and 8 deletions

View File

@ -107,7 +107,7 @@ class RpcLiteralRequestMessageBinder implements MessageBinderInterface
}
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()));
}
}