Skip to content

Commit

Permalink
issue#1
Browse files Browse the repository at this point in the history
Fixed: #1
  • Loading branch information
Michael v/d Rijt committed Sep 13, 2014
1 parent a5da0e8 commit b2ff17c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Artisaninweb/SoapWrapper/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function getWsdl()
*/
public function call($function,$params)
{
return $this->client->{$function}($params);
return call_user_func_array([$this->client, $function], $params);
}

/**
Expand Down Expand Up @@ -246,4 +246,4 @@ protected function createClient()
return $this;
}

}
}

0 comments on commit b2ff17c

Please sign in to comment.