| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | public function __construct( |
||
| 25 | string $inputId, |
||
| 26 | string $name, |
||
| 27 | array $intents = [], |
||
| 28 | ?array $attributes = null, |
||
| 29 | ?string $tag = null |
||
| 30 | ) { |
||
| 31 | $attributes ??= []; |
||
| 32 | $attributes = Attributes::addItem($attributes, Html5::ATTR_MULTIPLE); |
||
| 33 | |||
| 34 | parent::__construct($inputId, $name, $intents, $attributes, $tag); |
||
| 35 | } |
||
| 74 |