﻿£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>
<?php

namespace TEC\Events\Block_Templates;

use WP_Block_Template;

/**
 * Interface Block_Template_Contract
 *
 * @since 6.3.3 Moved and decoupled from Block API requirements, focusing on Template requirements.
 * @since 6.2.7
 */
interface Block_Template_Contract {
	/**
	 * Which is the name/slug of this template block.
	 *
	 * @since 6.3.3
	 *
	 * @return string
	 */
	public function slug();

	/**
	 * The Block ID.
	 *
	 * @since 6.2.7
	 *
	 * @return string
	 */
	public function id(): string;

	/**
	 * The getter for this template service to retrieve a hydrated WP_Block_Template.
	 *
	 * @since 6.2.7
	 *
	 * @return WP_Block_Template|null
	 */
	public function get_block_template(): ?WP_Block_Template;
}