xref: /dokuwiki/inc/Input/Server.php (revision 96f7b5b55777009d6e4013c09f8d24e5f6b56f47)
1<?php
2
3namespace dokuwiki\Input;
4
5/**
6 * Internal class used for $_SERVER access in dokuwiki\Input\Input class
7 */
8class 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