Skip to content

Commit f316623

Browse files
author
Kirill Nesmeyanov
committed
Apply PER-2
1 parent 2e5658b commit f316623

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Exception/SemanticException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ final public function __construct(
2323
public readonly int $offset,
2424
string $message,
2525
int $code = 0,
26-
?\Throwable $previous = null
26+
?\Throwable $previous = null,
2727
) {
2828
parent::__construct($message, $code, $previous);
2929
}

src/Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ private function internalError(\Throwable $e, ReadableInterface $source): ParseE
253253
{
254254
return ParseException::fromInternalError(
255255
statement: $source->getContents(),
256-
e: $e
256+
e: $e,
257257
);
258258
}
259259
}

0 commit comments

Comments
 (0)