File "Element.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Common/Admin/Entities/Element.php
File size: 296 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Element Interface.
*
* @since 6.1.0
*/
declare( strict_types=1 );
namespace TEC\Common\Admin\Entities;
/**
* Interface Element
*
* @since 6.1.0
*/
interface Element {
/**
* Render the element.
*
* @since 6.1.0
*
* @return void
*/
public function render();
}