moodle/lib/php-css-parser/Value/RuleValueList.php
Frederic Massart fbe18cc022 MDL-55224 core: Import PHP-CSS-Parser into core
Part of MDL-55071
2016-09-23 10:49:49 +01:00

9 lines
203 B
PHP

<?php
namespace Sabberworm\CSS\Value;
class RuleValueList extends ValueList {
public function __construct($sSeparator = ',', $iLineNo = 0) {
parent::__construct(array(), $sSeparator, $iLineNo);
}
}