We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c2e4e0 commit a07c51aCopy full SHA for a07c51a
src/RuleSet/DeclarationBlock.php
@@ -380,7 +380,7 @@ public function expandFontShorthand()
380
) {
381
$aFontProperties['font-weight'] = $mValue;
382
} elseif ($mValue instanceof RuleValueList && $mValue->getListSeparator() == '/') {
383
- list($oSize, $oHeight) = $mValue->getListComponents();
+ [$oSize, $oHeight] = $mValue->getListComponents();
384
$aFontProperties['font-size'] = $oSize;
385
$aFontProperties['line-height'] = $oHeight;
386
} elseif ($mValue instanceof Size && $mValue->getUnit() !== null) {
0 commit comments