poc form SDK (css)

This commit is contained in:
Benjamin Dalsass
2023-09-25 10:22:38 +02:00
parent 73328d6e99
commit fa244cafb5
3606 changed files with 594761 additions and 86 deletions

View File

@@ -0,0 +1,24 @@
<?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);
}
}