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