Skip to content

Commit 2d81c9e

Browse files
committed
Make CSSFunction::parseArguments protected (missed by rebase)
1 parent abb4c47 commit 2d81c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Value/CSSFunction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ private static function parseName(ParserState $parserState, bool $ignoreCase = f
7676
* @throws UnexpectedEOFException
7777
* @throws UnexpectedTokenException
7878
*/
79-
private static function parseArguments(ParserState $parserState)
79+
protected static function parseArguments(ParserState $parserState)
8080
{
8181
return Value::parseValue($parserState, ['=', ' ', ',']);
8282
}

0 commit comments

Comments
 (0)