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\PanelFooterInterface;
class PanelFooterElement extends Element implements PanelFooterInterface
{
/**
* @var string
*/
public static string $tag = 'div';
* @param string $style
*
* @return static
public function style(string $style): static
return $this;
}