File "stylesheet-interface.php"
Full path: /home/dora/public_html/wp-content/plugins/wp-grid-builder/frontend/models/stylesheet-interface.php
File size: 474 bytes
MIME-type: --
Charset: utf-8
<?php
/**
* StyleSheet Interface
*
* @package WP Grid Builder
* @author Loïc Blascos
* @copyright 2019-2022 Loïc Blascos
*/
namespace WP_Grid_Builder\FrontEnd\Models;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
interface StyleSheet_Interface {
/**
* Generate css
*
* @since 1.0.0
* @access public
*/
public function generate();
/**
* Get css
*
* @since 1.0.0
* @access public
*/
public function get();
}