/home/techb158/dev.balacoffee.com/vendor/sabberworm/php-css-parser/src/CSSList
NameSizeModeActions
AtRuleBlockList.php16580644editdlrm
CSSBlockList.php52360644editdlrm
CSSList.php156300644editdlrm
Document.php47450644editdlrm
KeyFrame.php19340644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/sabberworm/php-css-parser/src/CSSList/AtRuleBlockList.php (1658B)
sType = $sType; $this->sArgs = $sArgs; } /** * @return string */ public function atRuleName() { return $this->sType; } /** * @return string */ public function atRuleArgs() { return $this->sArgs; } /** * @return string */ public function __toString() { return $this->render(new OutputFormat()); } /** * @return string */ public function render(OutputFormat $oOutputFormat) { $sArgs = $this->sArgs; if ($sArgs) { $sArgs = ' ' . $sArgs; } $sResult = $oOutputFormat->sBeforeAtRuleBlock; $sResult .= "@{$this->sType}$sArgs{$oOutputFormat->spaceBeforeOpeningBrace()}{"; $sResult .= parent::render($oOutputFormat); $sResult .= '}'; $sResult .= $oOutputFormat->sAfterAtRuleBlock; return $sResult; } /** * @return bool */ public function isRootList() { return false; } }