Skip to content

Commit 9be0b0e

Browse files
Move interface ContentInterface::class and LabelInterface::class to php-forge/html-interop. (#339)
1 parent 233bbab commit 9be0b0e

File tree

6 files changed

+6
-92
lines changed

6 files changed

+6
-92
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
## 0.3.0 Under development
44

55
- Enh #338: Move `Helper` classes to `php-forge/html-helper` package (@terabytesoftw)
6+
- Enh #339: Move interface `ContentInterface::class` and `LabelInterface::class` to `php-forge/html-interop` package
7+
(@terabytesoftw)
68

79
## 0.2.0 February 27, 2024
810

src/FormControl/Input/Base/AbstractChoiceList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
Html\Attribute\Input\CanBeChecked,
2424
Html\Attribute\Input\CanBeRequired,
2525
Html\Attribute\Input\HasName,
26-
Html\FormControl\Input\Contract\LabelInterface,
2726
Html\Helper\Utils,
2827
Html\Interop\AriaDescribedByInterface,
2928
Html\Interop\CheckedInterface,
3029
Html\Interop\InputInterface,
30+
Html\Interop\LabelInterface,
3131
Html\Interop\RenderInterface,
3232
Html\Interop\RequiredInterface,
3333
Html\Tag,

src/FormControl/Input/Base/AbstractInputChoice.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
Html\Attribute\Input\HasForm,
3636
Html\Attribute\Input\HasName,
3737
Html\Attribute\Input\HasValue,
38-
Html\FormControl\Input\Contract\LabelInterface,
3938
Html\FormControl\Label,
4039
Html\Interop\AriaDescribedByInterface,
4140
Html\Interop\CheckedInterface,
4241
Html\Interop\InputInterface,
43-
Html\Interop\RequiredInterface,
42+
Html\Interop\LabelInterface,
4443
Html\Interop\RenderInterface,
44+
Html\Interop\RequiredInterface,
4545
Html\Tag,
4646
Widget\Element
4747
};

src/FormControl/Input/Contract/ContentInterface.php

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/FormControl/Input/Contract/LabelInterface.php

Lines changed: 0 additions & 66 deletions
This file was deleted.

src/FormControl/TextArea.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Attribute\Tag\HasRows,
2323
Attribute\Tag\HasWrap,
2424
Base\AbstractElement,
25-
FormControl\Input\Contract\ContentInterface,
25+
Interop\ContentInterface,
2626
Interop\InputInterface,
2727
Interop\LengthInterface,
2828
Interop\PlaceholderInterface,

0 commit comments

Comments
 (0)