• File: RuleValueList.php
  • Full Path: /home/masbinta/public_html/core/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/RuleValueList.php
  • File size: 203 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Sabberworm\CSS\Value;

class RuleValueList extends ValueList {
	public function __construct($sSeparator = ',', $iLineNo = 0) {
		parent::__construct(array(), $sSeparator, $iLineNo);
	}
}