Skip to content

Commit

Permalink
added setGlobal / isGlobal to AttributeVoidInterface.php
Browse files Browse the repository at this point in the history
  • Loading branch information
dwilbourne committed Oct 17, 2024
1 parent 081a009 commit c4863ca
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/html/attribute/AttributeVoidInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit c4863ca

Please sign in to comment.