File "CSSFunction.php"

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

<?php
namespace MailPoetVendor\Sabberworm\CSS\Value;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Sabberworm\CSS\OutputFormat;
class CSSFunction extends ValueList
{
 protected $sName;
 public function __construct($sName, $aArguments, $sSeparator = ',', $iLineNo = 0)
 {
 if ($aArguments instanceof RuleValueList) {
 $sSeparator = $aArguments->getListSeparator();
 $aArguments = $aArguments->getListComponents();
 }
 $this->sName = $sName;
 $this->iLineNo = $iLineNo;
 parent::__construct($aArguments, $sSeparator, $iLineNo);
 }
 public function getName()
 {
 return $this->sName;
 }
 public function setName($sName)
 {
 $this->sName = $sName;
 }
 public function getArguments()
 {
 return $this->aComponents;
 }
 public function __toString()
 {
 return $this->render(new OutputFormat());
 }
 public function render(OutputFormat $oOutputFormat)
 {
 $aArguments = parent::render($oOutputFormat);
 return "{$this->sName}({$aArguments})";
 }
}