| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | trait MultipleTrait |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Allow to specify more than one value. |
||
| 14 | * |
||
| 15 | * @param bool $value Whether the user is to be allowed to specify more than one value. |
||
| 16 | * |
||
| 17 | * @link https://html.spec.whatwg.org/multipage/input.html#attr-input-multiple |
||
| 18 | */ |
||
| 19 | public function multiple(bool $value = true): self |
||
| 26 |