Skip to content
Snippets Groups Projects

Change Reason string to array of reasons

Merged Matt Trefilek requested to merge TREFILEK/rpc-netid-php:master into master
3 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -297,11 +297,11 @@ class RpcNetidClientSoap implements RpcNetidClient {
}
if( $result->result === 400){
return new RpcNetidStructValidationResponse(false, $result->Reasons );
return new RpcNetidStructValidationResponse(false, array($result->Reasons->Reason) );
}
if( $result->result === 401){
return new RpcNetidStructValidationResponse(false, $result->Reasons );
return new RpcNetidStructValidationResponse(false, array($result->Reasons->Reason) );
}
throw new RpcNetidClientSoapException("Unexpected status code: {$result->result}",
Loading