More adjusted API tests
[dokuwiki.git] / inc / Form / FieldsetCloseElement.php
blobafcc552004e23555b879b049769b613d173223cb
1 <?php
3 namespace dokuwiki\Form;
5 /**
6 * Class FieldsetCloseElement
8 * Closes an open Fieldset
10 * @package dokuwiki\Form
12 class FieldsetCloseElement extends TagCloseElement
14 /**
15 * @param array $attributes
17 public function __construct($attributes = [])
19 parent::__construct('', $attributes);
20 $this->type = 'fieldsetclose';
24 /**
25 * The HTML representation of this element
27 * @return string
29 public function toHTML()
31 return '</fieldset>';