Skip to content

Commit 1e8ca90

Browse files
committed
[CLEANUP] Return null from DeclarationBlock::parse() on failure
Also add clarification of meaning of return value from `CSSList::parseListItem()`, where `null` and `false` have different meanings. Part of #1176.
1 parent 6393660 commit 1e8ca90

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

config/phpstan-baseline.neon

-6
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@ parameters:
4848
count: 1
4949
path: ../src/RuleSet/DeclarationBlock.php
5050

51-
-
52-
message: '#^Returning false in non return bool class method\. Use null with type\|null instead or add bool return type$#'
53-
identifier: typePerfect.nullOverFalse
54-
count: 1
55-
path: ../src/RuleSet/DeclarationBlock.php
56-
5751
-
5852
message: '#^Only booleans are allowed in a negated boolean, string\|null given\.$#'
5953
identifier: booleanNot.exprNotBoolean

src/CSSList/CSSList.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ public static function parseList(ParserState $parserState, CSSList $list): void
106106

107107
/**
108108
* @return AtRuleBlockList|KeyFrame|Charset|CSSNamespace|Import|AtRuleSet|DeclarationBlock|false|null
109+
* If `null` is returned, it means the end of the list has been reached.
110+
* If `false` is returned, it means an invalid item has been encountered,
111+
* but parsing of the next item should proceed.
109112
*
110113
* @throws SourceException
111114
* @throws UnexpectedEOFException
@@ -139,7 +142,7 @@ private static function parseListItem(ParserState $parserState, CSSList $list)
139142
} elseif ($parserState->comes('}')) {
140143
if ($isRoot) {
141144
if ($parserState->getSettings()->usesLenientParsing()) {
142-
return DeclarationBlock::parse($parserState);
145+
return DeclarationBlock::parse($parserState) ?? false;
143146
} else {
144147
throw new SourceException('Unopened {', $parserState->currentLine());
145148
}
@@ -148,7 +151,7 @@ private static function parseListItem(ParserState $parserState, CSSList $list)
148151
return null;
149152
}
150153
} else {
151-
return DeclarationBlock::parse($parserState, $list);
154+
return DeclarationBlock::parse($parserState, $list) ?? false;
152155
}
153156
}
154157

src/RuleSet/DeclarationBlock.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,12 @@ class DeclarationBlock extends RuleSet
3030
private $selectors = [];
3131

3232
/**
33-
* @return DeclarationBlock|false
34-
*
3533
* @throws UnexpectedTokenException
3634
* @throws UnexpectedEOFException
3735
*
3836
* @internal since V8.8.0
3937
*/
40-
public static function parse(ParserState $parserState, ?CSSList $list = null)
38+
public static function parse(ParserState $parserState, ?CSSList $list = null): ?DeclarationBlock
4139
{
4240
$comments = [];
4341
$result = new DeclarationBlock($parserState->currentLine());
@@ -63,7 +61,7 @@ public static function parse(ParserState $parserState, ?CSSList $list = null)
6361
if (!$parserState->comes('}')) {
6462
$parserState->consumeUntil('}', false, true);
6563
}
66-
return false;
64+
return null;
6765
} else {
6866
throw $e;
6967
}

0 commit comments

Comments
 (0)