File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/CalcRuleValueList.php.tar
wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php 0000644 00000000671 15156051653 0037153 0 ustar 00 var/www/vhosts/uyarreklam.com.tr/httpdocs <?php
namespace Sabberworm\CSS\Value;
use Sabberworm\CSS\OutputFormat;
class CalcRuleValueList extends RuleValueList
{
/**
* @param int $iLineNo
*/
public function __construct($iLineNo = 0)
{
parent::__construct(',', $iLineNo);
}
/**
* @return string
*/
public function render(OutputFormat $oOutputFormat)
{
return $oOutputFormat->implode(' ', $this->aComponents);
}
}