Completed
Push — svgpagetools ( d7814e...a24eaf )
by Andreas
05:51
created

Denied::tplContent()   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\Action;
4
5
/**
6
 * Class Denied
7
 *
8
 * Show the access denied screen
9
 *
10
 * @package dokuwiki\Action
11
 */
12
class Denied extends AbstractAclAction {
13
14
    /** @inheritdoc */
15
    public function minimumPermission() {
16
        return AUTH_NONE;
17
    }
18
19
    public function tplContent() {
20
        html_denied();
21
    }
22
23
}
24