mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01: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);
|
|
}
|
|
}
|