Skip to content

Commit 91eceac

Browse files
committed
Fix signature
1 parent 5481b29 commit 91eceac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/ClientException.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ class ClientException extends \Exception implements ClientExceptionInterface {
1212
/**
1313
* {@inheritDoc}
1414
*/
15-
#[Pure] public function __construct(
15+
#[Pure]
16+
public function __construct(
1617
string $message = "",
1718
int $code = 0,
18-
?Throwable $previous = NULL,
19+
?\Throwable $previous = NULL,
1920
public readonly ?string $errCode = NULL,
2021
) {
2122
parent::__construct($message, $code, $previous);

0 commit comments

Comments
 (0)