Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
namespace Sabberworm\CSS\Value;
4
 
5
use Sabberworm\CSS\OutputFormat;
6
 
7
class CalcRuleValueList extends RuleValueList
8
{
9
    /**
10
     * @param int $iLineNo
11
     */
12
    public function __construct($iLineNo = 0)
13
    {
14
        parent::__construct(',', $iLineNo);
15
    }
16
 
17
    /**
18
     * @return string
19
     */
20
    public function render(OutputFormat $oOutputFormat)
21
    {
22
        return $oOutputFormat->implode(' ', $this->aComponents);
23
    }
24
}