xref: /dokuwiki/lib/plugins/config/core/Setting/SettingFieldset.php (revision bc20e40a4ab0df5c6b605ec117b3f0a8e6c816f0)
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    /** @inheritdoc */
13    public function shouldHaveDefault() {
14        return false;
15    }
16
17}
18