File "RuleValueList.php"

Full Path: /home/warrior1/public_html/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/RuleValueList.php
File size: 291 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Sabberworm\CSS\Value;

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