Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList

KeyFrame::renderpublicWC 1.0

Method of the class: KeyFrame{}

No Hooks.

Returns

String.

Usage

$KeyFrame = new KeyFrame();
$KeyFrame->render( $oOutputFormat );
$oOutputFormat(OutputFormat|null) (required)
.

KeyFrame::render() code WC 10.5.0

public function render($oOutputFormat)
{
    $sResult = $oOutputFormat->comments($this);
    $sResult .= "@{$this->vendorKeyFrame} {$this->animationName}{$oOutputFormat->spaceBeforeOpeningBrace()}{";
    $sResult .= $this->renderListContents($oOutputFormat);
    $sResult .= '}';
    return $sResult;
}