File "class-render-interface.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/wp-rocket/inc/classes/interfaces/class-render-interface.php
File size: 392 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php
namespace WP_Rocket\Interfaces;

/**
 * Render interface
 *
 * @since 3.0
 * @author Remy Perona
 */
interface Render_Interface {
	/**
	 * Renders the given template if it's readable.
	 *
	 * @since 3.0
	 * @author Remy Perona
	 *
	 * @param string $template Template slug.
	 * @param array  $data     Data to pass to the template.
	 */
	public function generate( $template, $data );
}