PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
sabberworm
/
php-css-parser
/
src
/
Value
<?php namespace Sabberworm\CSS\Value; use Sabberworm\CSS\OutputFormat; class CalcRuleValueList extends RuleValueList { /** * @param int $iLineNo */ public function __construct($iLineNo = 0) { parent::__construct(',', $iLineNo); } /** * @return string */ public function render(OutputFormat $oOutputFormat) { return $oOutputFormat->implode(' ', $this->aComponents); } }
[-] ValueList.php
[edit]
[-] RuleValueList.php
[edit]
[+]
..
[-] CalcFunction.php
[edit]
[-] CSSFunction.php
[edit]
[-] Color.php
[edit]
[-] Size.php
[edit]
[-] LineName.php
[edit]
[-] CalcRuleValueList.php
[edit]
[-] CSSString.php
[edit]
[-] URL.php
[edit]
[-] Value.php
[edit]
[-] PrimitiveValue.php
[edit]