Skip to content

Commit

Permalink
Merge pull request #53 from maxmind/greg/fix-lints
Browse files Browse the repository at this point in the history
Run new php-cs-fixer against code
  • Loading branch information
faktas2 authored Apr 2, 2024
2 parents 9013268 + f33ce5b commit d984946
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Exception/HttpException.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function __construct(
string $message,
int $httpStatus,
string $uri,
\Exception $previous = null
?\Exception $previous = null
) {
$this->uri = $uri;
parent::__construct($message, $httpStatus, $previous);
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/InvalidRequestException.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function __construct(
string $error,
int $httpStatus,
string $uri,
\Exception $previous = null
?\Exception $previous = null
) {
$this->error = $error;
parent::__construct($message, $httpStatus, $uri, $previous);
Expand Down

0 comments on commit d984946

Please sign in to comment.