Failed Conditions
Pull Request — psr2 (#2382)
by Andreas
08:02 queued 12s
created

SettingFieldset::shouldHaveDefault()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace 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
 */
10
class SettingFieldset extends Setting {
11
12
    /** @inheritdoc */
13
    public function shouldHaveDefault() {
14
        return false;
15
    }
16
17
}
18