Skip to content
Snippets Groups Projects
Commit 12571df0 authored by Matt Trefilek's avatar Matt Trefilek
Browse files

Merge branch 'master' into 'master'

Remove array requirement

See merge request !5
parents b299ce8b 94fb0cfb
No related branches found
No related tags found
1 merge request!5Remove array requirement
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment