mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-10 20:28:44 +02:00
* N°8834 - Add compatibility with PHP 8.4 * Rollback of scssphp/scssphp version upgrade due to compilation error
27 lines
482 B
PHP
27 lines
482 B
PHP
<?php
|
|
|
|
namespace Sabberworm\CSS\Value;
|
|
|
|
use Sabberworm\CSS\OutputFormat;
|
|
|
|
class CalcRuleValueList extends RuleValueList
|
|
{
|
|
/**
|
|
* @param int $iLineNo
|
|
*/
|
|
public function __construct($iLineNo = 0)
|
|
{
|
|
parent::__construct(',', $iLineNo);
|
|
}
|
|
|
|
/**
|
|
* @param OutputFormat|null $oOutputFormat
|
|
*
|
|
* @return string
|
|
*/
|
|
public function render($oOutputFormat)
|
|
{
|
|
return $oOutputFormat->implode(' ', $this->aComponents);
|
|
}
|
|
}
|