| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Text extends AControl |
||
| 12 | { |
||
| 13 | protected string $templateInput = '<input type="text" value="%1$s"%2$s />%3$s'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $alias |
||
| 17 | * @param string|int|float|null $value |
||
| 18 | * @param string $label |
||
| 19 | * @return $this |
||
| 20 | */ |
||
| 21 | 16 | public function set(string $alias, $value = null, string $label = ''): self |
|
| 28 |