summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/config/core/Setting/SettingFieldset.php
blob: 4e861896718e40c9252c02ea931893446895ddb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace dokuwiki\plugin\config\core\Setting;

/**
 * A do-nothing class used to detect the 'fieldset' type.
 *
 * Used to start a new settings "display-group".
 */
class SettingFieldset extends Setting {

    /** @inheritdoc */
    public function shouldHaveDefault() {
        return false;
    }

}