Skip to content

Commit

Permalink
fix style issue raised by continuous-integration/styleci/pr
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcorbett committed Mar 22, 2024
1 parent 8a3f154 commit 4fff555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Github/ResultPager.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function fetch(AbstractApi $api, string $method, array $parameters = []):
$api = $closure($api);
$result = $api->$method(...$parameters);

if ($result === "" && $this->client->getLastResponse()->getStatusCode() === 204) {
if ($result === '' && $this->client->getLastResponse()->getStatusCode() === 204) {
$result = [];
}

Expand Down

0 comments on commit 4fff555

Please sign in to comment.