CSSFunction.php
3 years ago
CSSString.php
3 years ago
CalcFunction.php
3 years ago
CalcRuleValueList.php
3 years ago
Color.php
3 years ago
LineName.php
3 years ago
PrimitiveValue.php
3 years ago
RuleValueList.php
3 years ago
Size.php
3 years ago
URL.php
3 years ago
Value.php
3 years ago
ValueList.php
3 years ago
CalcRuleValueList.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP\Sabberworm\CSS\Value; |
| 4 | |
| 5 | use IAWP\Sabberworm\CSS\OutputFormat; |
| 6 | class CalcRuleValueList extends RuleValueList |
| 7 | { |
| 8 | /** |
| 9 | * @param int $iLineNo |
| 10 | */ |
| 11 | public function __construct($iLineNo = 0) |
| 12 | { |
| 13 | parent::__construct(',', $iLineNo); |
| 14 | } |
| 15 | /** |
| 16 | * @return string |
| 17 | */ |
| 18 | public function render(OutputFormat $oOutputFormat) |
| 19 | { |
| 20 | return $oOutputFormat->implode(' ', $this->aComponents); |
| 21 | } |
| 22 | } |
| 23 |