xref: /dokuwiki/inc/Input/Server.php (revision 0b1bbbbb7d4e3c531cd255dbf878ce27d5967a0c)
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    /** @noinspection PhpMissingParentConstructorInspection
11     * Initialize the $access array, remove subclass members
12     */
13    public function __construct()
14    {
15        $this->access = &$_SERVER;
16    }
17}
18