Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
namespace Sabberworm\CSS\Value;
4
 
5
/**
6
 * This class is used to represent all multivalued rules like `font: bold 12px/3 Helvetica, Verdana, sans-serif;`
7
 * (where the value would be a whitespace-separated list of the primitive value `bold`, a slash-separated list
8
 * and a comma-separated list).
9
 */
10
class RuleValueList extends ValueList
11
{
12
    /**
13
     * @param string $sSeparator
14
     * @param int $iLineNo
15
     */
16
    public function __construct($sSeparator = ',', $iLineNo = 0)
17
    {
18
        parent::__construct([], $sSeparator, $iLineNo);
19
    }
20
}