mirror of
https://github.com/Icinga/icinga-php-library.git
synced 2025-09-26 11:08:55 +02:00
9 lines
119 B
PHP
9 lines
119 B
PHP
<?php
|
|
|
|
namespace ipl\Html\FormElement;
|
|
|
|
class ButtonElement extends BaseFormElement
|
|
{
|
|
protected $tag = 'button';
|
|
}
|