Mini Kabibi Habibi

Current Path : C:/xampp/htdocs/cid/system/dompdf/vendor/sabberworm/php-css-parser/src/Value/
Upload File :
Current File : C:/xampp/htdocs/cid/system/dompdf/vendor/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php

<?php

namespace Sabberworm\CSS\Value;

use Sabberworm\CSS\OutputFormat;

class CalcRuleValueList extends RuleValueList
{
    /**
     * @param int $iLineNo
     */
    public function __construct($iLineNo = 0)
    {
        parent::__construct(',', $iLineNo);
    }

    /**
     * @param OutputFormat|null $oOutputFormat
     *
     * @return string
     */
    public function render($oOutputFormat)
    {
        return $oOutputFormat->implode(' ', $this->aComponents);
    }
}