xref: /dokuwiki/lib/plugins/config/core/Setting/SettingFieldset.php (revision dccd6b2bba7367e4d1d2d7aa84c9f9d15584b593)
1<?php
2
3namespace dokuwiki\plugin\config\core\Setting;
4
5/**
6 * A do-nothing class used to detect the 'fieldset' type.
7 *
8 * Used to start a new settings "display-group".
9 */
10class SettingFieldset extends Setting
11{
12
13    /** @inheritdoc */
14    public function shouldHaveDefault()
15    {
16        return false;
17    }
18}
19