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\FormInterface;
class FormElement extends Element implements FormInterface
{
/**
* @var string
*/
public static string $tag = 'form';
* @inheritDoc
public function horizontal(bool $horizontal = true): static
return $this;
}
public function wrapped(bool $wrapped = true): static