added display type interfaces for flagging the default display type of tags

This commit is contained in:
Joby 2022-12-01 16:44:40 -07:00
parent 1920ad571e
commit abaccd2fc7
5 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,7 @@
<?php
namespace ByJoby\HTML\DisplayTypes;
interface DisplayBlock
{
}

View file

@ -0,0 +1,7 @@
<?php
namespace ByJoby\HTML\DisplayTypes;
interface DisplayContents
{
}

View file

@ -0,0 +1,7 @@
<?php
namespace ByJoby\HTML\DisplayTypes;
interface DisplayInline
{
}

View file

@ -0,0 +1,7 @@
<?php
namespace ByJoby\HTML\DisplayTypes;
interface DisplayInlineBlock
{
}

View file

@ -0,0 +1,7 @@
<?php
namespace ByJoby\HTML\DisplayTypes;
interface DisplayNone
{
}