Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
vendorKeyFrame = $vendorKeyFrame;
}
/**
* @return non-empty-string
*/
public function getVendorKeyFrame(): string
{
return $this->vendorKeyFrame;
}
/**
* @param non-empty-string $animationName
*/
public function setAnimationName(string $animationName): void
{
$this->animationName = $animationName;
}
/**
* @return non-empty-string
*/
public function getAnimationName(): string
{
return $this->animationName;
}
/**
* @return non-empty-string
*/
public function render(OutputFormat $outputFormat): string
{
$formatter = $outputFormat->getFormatter();
$result = $formatter->comments($this);
$result .= "@{$this->vendorKeyFrame} {$this->animationName}{$formatter->spaceBeforeOpeningBrace()}{";
$result .= $this->renderListContents($outputFormat);
$result .= '}';
return $result;
}
public function isRootList(): bool
{
return false;
}
/**
* @return non-empty-string
*/
public function atRuleName(): string
{
return $this->vendorKeyFrame;
}
/**
* @return non-empty-string
*/
public function atRuleArgs(): string
{
return $this->animationName;
}
}