Skip to content

Commit 0fc59b9

Browse files
committed
Fix errors of phpstan 2.1+
1 parent 3ae78ed commit 0fc59b9

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/Exception/ParsingException.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ public function withSource(string $source, int $offset): self
4545
return new static(
4646
source: $source,
4747
offset: $offset,
48-
message: $this->message,
49-
code: $this->code,
48+
message: $this->getMessage(),
49+
code: $this->getCode(),
5050
previous: $this,
5151
);
5252
}

src/Tag/Content/OptionalIdentifierApplicator.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ final class OptionalIdentifierApplicator extends Applicator
1616
*/
1717
public function __invoke(Content $lexer): ?string
1818
{
19+
// @phpstan-ignore-next-line : PHPStan false positive
1920
if ($lexer->value === '') {
2021
return null;
2122
}
2223

2324
\preg_match('/([a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*)\b/u', $lexer->value, $matches);
2425

25-
if (\count($matches) !== 2 || $matches[1] === '') {
26+
if (\count($matches) !== 2) {
2627
return null;
2728
}
2829

src/Tag/Content/OptionalVariableNameApplicator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __invoke(Content $lexer): ?string
2222

2323
\preg_match('/\$([a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*)\b/u', $lexer->value, $matches);
2424

25-
if (\count($matches) !== 2 || $matches[1] === '') {
25+
if (\count($matches) !== 2) {
2626
return null;
2727
}
2828

0 commit comments

Comments
 (0)