Skip to content

Commit abbcc8f

Browse files
committed
Catch up with upstream/main
1 parent 7aaebb2 commit abbcc8f

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/Value/Expression.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,14 @@
1212
class Expression extends CSSFunction
1313
{
1414
/**
15-
* @param ParserState $oParserState
16-
* @param bool $bIgnoreCase
17-
*
18-
* @return Expression
19-
*
2015
* @throws SourceException
2116
* @throws UnexpectedEOFException
2217
* @throws UnexpectedTokenException
2318
*/
24-
public static function parse(ParserState $oParserState, $bIgnoreCase = false)
19+
public static function parse(ParserState $oParserState, bool $bIgnoreCase = false): Expression
2520
{
2621
$oParserState->consume('(');
27-
$aArguments = self::parseArgs($oParserState);
22+
$aArguments = parent::parseArguments($oParserState);
2823
$mResult = new Expression("", $aArguments, ',', $oParserState->currentLine());
2924
$oParserState->consume(')');
3025
return $mResult;

0 commit comments

Comments
 (0)