mirror of
https://github.com/moodle/moodle.git
synced 2025-05-08 01:05:48 +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);
|
|
}
|
|
} |