Skip to content

Commit

Permalink
Fixed missing splat operator.
Browse files Browse the repository at this point in the history
  • Loading branch information
denpamusic committed Sep 9, 2018
1 parent a283473 commit ed516d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public function __call($method, array $params = [])
return $this->requestAsync($method, ...$params);
}

return $this->request($method, $params);
return $this->request($method, ...$params);
}

/**
Expand Down

0 comments on commit ed516d0

Please sign in to comment.