Skip to content

Commit

Permalink
removed the methods related to allowing inner text and the block/inli…
Browse files Browse the repository at this point in the history
…ne (default css display) properties, deferring the decision on whether to implement them until later.
  • Loading branch information
dwilbourne committed Aug 30, 2024
1 parent 19a563b commit ab79a6f
Showing 1 changed file with 8 additions and 17 deletions.
25 changes: 8 additions & 17 deletions src/html/tag/TagInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,32 +39,23 @@ public function getAllowedSubTags(): array;
/**
* setInnerTextAllowed
* @param bool $innerTextAllowed
* TODO: decide whether to implement this feature
* public function setInnerTextAllowed(bool $innerTextAllowed): void;
*/
public function setInnerTextAllowed(bool $innerTextAllowed): void;

/**
* innerTextAllowed
* @return bool
* TODO: decide whether to implement this feature
* public function isInnerTextAllowed(): bool;
*/
public function isInnerTextAllowed(): bool;

/**
* setIsInlineElement
* @param bool $isInlineElement
* @return mixed
* setDefaultCSSDisplayValue
* @param string $displayValue
* TODO: decide whether to implement this feature
* public function setDefaultCSSDisplayValue(string $displayValue): void;
*/
public function setIsInlineElement(bool $isInlineElement);
/**
* isInlineElement
* @return bool
*/
public function isInlineElement(): bool;

/**
* isBlockElement
* @return bool
*/
public function isBlockElement(): bool;

/**
* getInnerHtml
Expand Down

0 comments on commit ab79a6f

Please sign in to comment.