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,15 @@
<?php
namespace Sabberworm\CSS\Value;
class RuleValueList extends ValueList
{
/**
* @param string $sSeparator
* @param int $iLineNo
*/
public function __construct($sSeparator = ',', $iLineNo = 0)
{
parent::__construct([], $sSeparator, $iLineNo);
}
}