setAttribute('type', 'checkbox'); } public function setChecked($checked=true): ElementInputCheckbox { if ($checked) { $this->setAttribute('checked'); } else { $this->removeAttribute('checked'); } return $this; } }