Skip to content

Commit

Permalink
Merge pull request #37 from cranleighschool/analysis-BMmRLg
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
fredbradley authored Feb 23, 2022
2 parents 7dbba3d + 6d8de3b commit 9648e05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Endpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ abstract protected function setEndpoint(): void;
*
* @param string $url
* @param int $page
* @param array $queryArgs
* @param array $queryArgs
* @return mixed
*
* @throws GuzzleException
*/
public function pageRequest(string $url, int $page, array $queryArgs=[])
public function pageRequest(string $url, int $page, array $queryArgs = [])
{
$response = $this->guzzle->request('GET', $url, [
'query' => array_merge(['page' => $page], $queryArgs),
Expand Down

0 comments on commit 9648e05

Please sign in to comment.