Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiasgeniar authored and github-actions[bot] committed Dec 18, 2024
1 parent 6397072 commit c728a75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/Exceptions/UnauthorizedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

use Exception;

class UnauthorizedException extends Exception
{
}
class UnauthorizedException extends Exception {}
2 changes: 1 addition & 1 deletion src/MakesHttpRequests.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected function handleRequestError(ResponseInterface $response): void
}

if ($response->getStatusCode() === 404) {
throw new NotFoundException();
throw new NotFoundException;
}

if ($response->getStatusCode() === 400) {
Expand Down

0 comments on commit c728a75

Please sign in to comment.