CSSFunction.php
2 years ago
CSSString.php
4 years ago
CalcFunction.php
2 years ago
CalcRuleValueList.php
4 years ago
Color.php
2 years ago
LineName.php
4 years ago
PrimitiveValue.php
4 years ago
RuleValueList.php
4 years ago
Size.php
2 years ago
URL.php
2 years ago
Value.php
2 years ago
ValueList.php
4 years ago
index.php
3 years ago
CalcRuleValueList.php
16 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Sabberworm\CSS\Value; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Sabberworm\CSS\OutputFormat; |
| 5 | class CalcRuleValueList extends RuleValueList |
| 6 | { |
| 7 | public function __construct($iLineNo = 0) |
| 8 | { |
| 9 | parent::__construct(',', $iLineNo); |
| 10 | } |
| 11 | public function render(OutputFormat $oOutputFormat) |
| 12 | { |
| 13 | return $oOutputFormat->implode(' ', $this->aComponents); |
| 14 | } |
| 15 | } |
| 16 |