File "ValueList.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/sabberworm/php-css-parser/src/Value/ValueList.php
File size: 1.21 KB
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Sabberworm\CSS\Value;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Sabberworm\CSS\OutputFormat;
abstract class ValueList extends Value
{
 protected $aComponents;
 protected $sSeparator;
 public function __construct($aComponents = [], $sSeparator = ',', $iLineNo = 0)
 {
 parent::__construct($iLineNo);
 if (!\is_array($aComponents)) {
 $aComponents = [$aComponents];
 }
 $this->aComponents = $aComponents;
 $this->sSeparator = $sSeparator;
 }
 public function addListComponent($mComponent)
 {
 $this->aComponents[] = $mComponent;
 }
 public function getListComponents()
 {
 return $this->aComponents;
 }
 public function setListComponents(array $aComponents)
 {
 $this->aComponents = $aComponents;
 }
 public function getListSeparator()
 {
 return $this->sSeparator;
 }
 public function setListSeparator($sSeparator)
 {
 $this->sSeparator = $sSeparator;
 }
 public function __toString()
 {
 return $this->render(new OutputFormat());
 }
 public function render(OutputFormat $oOutputFormat)
 {
 return $oOutputFormat->implode($oOutputFormat->spaceBeforeListArgumentSeparator($this->sSeparator) . $this->sSeparator . $oOutputFormat->spaceAfterListArgumentSeparator($this->sSeparator), $this->aComponents);
 }
}