for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lagdo\UiBuilder\Element\Html;
use Lagdo\UiBuilder\Builder\Html\Element;
use Lagdo\UiBuilder\Element\RadioInterface;
class RadioElement extends Element implements RadioInterface
{
/**
* @var string
*/
public static string $tag = 'input';
* @inheritDoc
public function checked(bool $checked = false): static
$checked && $this->setAttribute('checked', 'checked');
return $this;
}