Skip to content
Snippets Groups Projects

Remove array requirement

Merged Matt Trefilek requested to merge TREFILEK/rpc-netid-php:master into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -24,7 +24,7 @@ class RpcNetidStructValidationResponse {
* @param bool $isValid
* @param array $reasons the array of a Reason for why the SOAP Call failed
*/
function __construct( $isValid, array $reasons ) {
function __construct( $isValid, $reasons ) {
if(gettype($reasons) == "array") {
$this->setIsValid( $isValid );
} else {
Loading