From 94fb0cfb1e6a559c9b0e96bfb1092211dbf7fe63 Mon Sep 17 00:00:00 2001
From: Matt Trefilek <matthew.trefilek@wisc.edu>
Date: Fri, 6 Oct 2017 17:06:21 -0500
Subject: [PATCH] Remove array requirement

---
 src/main/edu/wisc/doit/RpcNetidStructValidationResponse.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/edu/wisc/doit/RpcNetidStructValidationResponse.php b/src/main/edu/wisc/doit/RpcNetidStructValidationResponse.php
index eb68ef0..0c21da1 100644
--- a/src/main/edu/wisc/doit/RpcNetidStructValidationResponse.php
+++ b/src/main/edu/wisc/doit/RpcNetidStructValidationResponse.php
@@ -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 {
-- 
GitLab