mirror of
https://github.com/moodle/moodle.git
synced 2025-04-30 13:28:28 +02:00
9 lines
203 B
PHP
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);
|
|
}
|
|
} |