File "TemplateParserInterface.php"

Full Path: /home/attunedd/public_html/wp-content/plugins/carousel-slider/includes/Interfaces/TemplateParserInterface.php
File size: 267 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace CarouselSlider\Interfaces;

/**
 * TemplateParserInterface class
 */
interface TemplateParserInterface {
	/**
	 * Render template to HTML.
	 * Generates the final HTML on the frontend.
	 *
	 * @return string
	 */
	public function render(): string;
}