/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/KeyFrame.php (1934B)
vendorKeyFrame = null; $this->animationName = null; } /** * @param string $vendorKeyFrame */ public function setVendorKeyFrame($vendorKeyFrame) { $this->vendorKeyFrame = $vendorKeyFrame; } /** * @return string|null */ public function getVendorKeyFrame() { return $this->vendorKeyFrame; } /** * @param string $animationName */ public function setAnimationName($animationName) { $this->animationName = $animationName; } /** * @return string|null */ public function getAnimationName() { return $this->animationName; } /** * @return string */ public function __toString() { return $this->render(new OutputFormat()); } /** * @return string */ public function render(OutputFormat $oOutputFormat) { $sResult = "@{$this->vendorKeyFrame} {$this->animationName}{$oOutputFormat->spaceBeforeOpeningBrace()}{"; $sResult .= parent::render($oOutputFormat); $sResult .= '}'; return $sResult; } /** * @return bool */ public function isRootList() { return false; } /** * @return string|null */ public function atRuleName() { return $this->vendorKeyFrame; } /** * @return string|null */ public function atRuleArgs() { return $this->animationName; } }