Skip to content

Commit

Permalink
Run new php-cs-fixer against code
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Apr 2, 2024
1 parent bf62c41 commit 67934d0
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 @@ -18,7 +18,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 @@ -20,7 +20,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 67934d0

Please sign in to comment.