Skip to content

Commit

Permalink
Add CheckedValueInterface to AbstractChoiceList. (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Jan 6, 2024
1 parent cd96458 commit 18dd6f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Input/Base/AbstractChoiceList.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@

use PHPForge\Html\Attribute;
use PHPForge\Html\Input\Checkbox;
use PHPForge\Html\Input\CheckedValueInterface;
use PHPForge\Html\Input\Contract\ChoiceInterface;
use PHPForge\Html\Input\Radio;
use PHPForge\Html\Label;
use PHPForge\Html\Tag;
use PHPForge\Widget\Element;

abstract class AbstractChoiceList extends Element implements ChoiceInterface
abstract class AbstractChoiceList extends Element implements CheckedValueInterface, ChoiceInterface
{
use Attribute\Aria\HasAriaDescribedBy;
use Attribute\Aria\HasAriaLabel;
Expand Down

0 comments on commit 18dd6f1

Please sign in to comment.