* @since 3.0.0 * @internal */ interface iUIBlockFactory { /** * @return string TWIG tag name that will be associated with this factory * @used-by TWIG tags * @internal */ public static function GetTwigTagName(): string; /** * @return string FQCN of the UIBlock produced by this factory * @used-by TWIG tags * @internal */ public static function GetUIBlockClassName(): string; }