Completed
Push — psr2 ( b196d8...ccc4c7 )
by Andreas
03:04
created

Server   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace dokuwiki\Input;
4
5
/**
6
 * Internal class used for $_SERVER access in dokuwiki\Input\Input class
7
 */
8
class Server extends Input
9
{
10
11
    /** @noinspection PhpMissingParentConstructorInspection
12
     * Initialize the $access array, remove subclass members
13
     */
14
    public function __construct()
15
    {
16
        $this->access = &$_SERVER;
17
    }
18
19
}
20