xref: /dokuwiki/inc/Input/Server.php (revision d4f83172d9533c4d84f450fe22ef630816b21d75)
1*ccc4c71cSAndreas Gohr<?php
2*ccc4c71cSAndreas Gohr
3*ccc4c71cSAndreas Gohrnamespace dokuwiki\Input;
4*ccc4c71cSAndreas Gohr
5*ccc4c71cSAndreas Gohr/**
6*ccc4c71cSAndreas Gohr * Internal class used for $_SERVER access in dokuwiki\Input\Input class
7*ccc4c71cSAndreas Gohr */
8*ccc4c71cSAndreas Gohrclass Server extends Input
9*ccc4c71cSAndreas Gohr{
10*ccc4c71cSAndreas Gohr    /** @noinspection PhpMissingParentConstructorInspection
11*ccc4c71cSAndreas Gohr     * Initialize the $access array, remove subclass members
12*ccc4c71cSAndreas Gohr     */
13*ccc4c71cSAndreas Gohr    public function __construct()
14*ccc4c71cSAndreas Gohr    {
15*ccc4c71cSAndreas Gohr        $this->access = &$_SERVER;
16*ccc4c71cSAndreas Gohr    }
17*ccc4c71cSAndreas Gohr}
18