File "CalcRuleValueList.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php
File size: 385 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Sabberworm\CSS\Value;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Sabberworm\CSS\OutputFormat;
class CalcRuleValueList extends RuleValueList
{
 public function __construct($iLineNo = 0)
 {
 parent::__construct(',', $iLineNo);
 }
 public function render(OutputFormat $oOutputFormat)
 {
 return $oOutputFormat->implode(' ', $this->aComponents);
 }
}