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\TabNavItemInterface;
class TabNavItemElement extends Element implements TabNavItemInterface
{
/**
* @var string
*/
public static string $tag = '';
* @param string $target
*
* @return static
public function target(string $target): static
return $this;
}
* @param bool $active
public function active(bool $active = false): static
* @param bool $enabled
public function enabled(bool $enabled): static