From c4863ca3632e633bc45cd544defd058333db6488 Mon Sep 17 00:00:00 2001 From: Doug Wilbourne Date: Thu, 17 Oct 2024 16:43:46 -0400 Subject: [PATCH] added setGlobal / isGlobal to AttributeVoidInterface.php --- src/html/attribute/AttributeVoidInterface.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/html/attribute/AttributeVoidInterface.php b/src/html/attribute/AttributeVoidInterface.php index e27c858..2a38556 100644 --- a/src/html/attribute/AttributeVoidInterface.php +++ b/src/html/attribute/AttributeVoidInterface.php @@ -25,4 +25,16 @@ public function getName(): string; * @return string */ public function render(): string; + + /** + * setGloabl + * @param bool $global + */ + public function setGloabl(bool $global): void; + + /** + * isGlobal + * @return bool + */ + public function isGlobal(): bool; }