Skip to content

Commit

Permalink
Remove unused import statement in AbstractButton class. (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Dec 21, 2023
1 parent 5520e1d commit b3f1923
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Input/Base/AbstractButton.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@
use InvalidArgumentException;
use PHPForge\Html\Attribute;
use PHPForge\Html\Input\Input;
use PHPForge\Html\Input\InputInterface;
use PHPForge\Html\Label;
use PHPForge\Html\Tag;
use PHPForge\Widget\Element;

use function array_key_exists;
use function is_string;

abstract class AbstractButton extends Element implements InputInterface
abstract class AbstractButton extends Element
{
use Attribute\Aria\HasAriaDescribedBy;
use Attribute\Aria\HasAriaLabel;
Expand Down

0 comments on commit b3f1923

Please sign in to comment.