Skip to content

Commit e40ca28

Browse files
committed
Apply PER-2
1 parent 4cf1083 commit e40ca28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/Exception/ParsingException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ final public function __construct(
1818
public readonly int $offset = 0,
1919
string $message = "",
2020
int $code = 0,
21-
?\Throwable $previous = null
21+
?\Throwable $previous = null,
2222
) {
2323
parent::__construct($message, $code, $previous);
2424
}

Diff for: src/Tag/Content/ValueApplicator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class ValueApplicator extends Applicator
2121
*/
2222
public function __construct(
2323
private readonly string $tag,
24-
private readonly string $value
24+
private readonly string $value,
2525
) {
2626
$this->identifier = new OptionalValueApplicator($value);
2727
}

0 commit comments

Comments
 (0)