first commit

This commit is contained in:
kali
2024-05-28 17:10:06 +03:00
parent 92b3d15cc7
commit 49a337bd0f
43 changed files with 1799 additions and 0 deletions

13
builders/LabelBuilder.php Executable file
View File

@ -0,0 +1,13 @@
<?php
namespace itguild\forms\form\builders;
use itguild\forms\form\inputs\Label;
class LabelBuilder
{
public static function build(string $title, array $params = [])
{
return new Label(title: $title, paramsArray: $params);
}
}