mirror of
https://github.com/moodle/moodle.git
synced 2025-05-18 22:20:43 +02:00
16 lines
291 B
PHP
16 lines
291 B
PHP
<?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);
|
|
}
|
|
}
|