13 lines
250 B
PHP
13 lines
250 B
PHP
|
<?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);
|
||
|
}
|
||
|
}
|