CSSFunction.php
7 months ago
CSSString.php
7 months ago
CalcFunction.php
7 months ago
CalcRuleValueList.php
7 months ago
Color.php
7 months ago
LineName.php
7 months ago
PrimitiveValue.php
7 months ago
RuleValueList.php
7 months ago
Size.php
7 months ago
URL.php
7 months ago
Value.php
7 months ago
ValueList.php
7 months ago
RuleValueList.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value; |
| 4 | |
| 5 | /** |
| 6 | * This class is used to represent all multivalued rules like `font: bold 12px/3 Helvetica, Verdana, sans-serif;` |
| 7 | * (where the value would be a whitespace-separated list of the primitive value `bold`, a slash-separated list |
| 8 | * and a comma-separated list). |
| 9 | */ |
| 10 | class RuleValueList extends ValueList |
| 11 | { |
| 12 | /** |
| 13 | * @param string $sSeparator |
| 14 | * @param int $iLineNo |
| 15 | */ |
| 16 | public function __construct($sSeparator = ',', $iLineNo = 0) |
| 17 | { |
| 18 | parent::__construct([], $sSeparator, $iLineNo); |
| 19 | } |
| 20 | } |
| 21 |