Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

Commit

Permalink
Update Client.php
Browse files Browse the repository at this point in the history
  • Loading branch information
algorozco committed Oct 31, 2020
1 parent 65dfb50 commit 411f4a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/HelloSign/Client.php
Expand Up @@ -506,17 +506,17 @@ public function getSignatureRequest($id)
* represents a paged query result.
*
* @param int $page
* @param int $pageSize
* @param int $page_size
* @param null|string $query
* @return SignatureRequestList
* @throws BaseException
* @throws Error
*/
public function getSignatureRequests($page = 1, $pageSize = 20, $query = null)
public function getSignatureRequests($page = 1, $page_size = 20, $query = null)
{
$params = array(
'page' => $page,
'page_size' => $pageSize,
'page_size' => $page_size,
'query' => $query,
);

Expand Down

0 comments on commit 411f4a8

Please sign in to comment.