summaryrefslogtreecommitdiff
path: root/platform/www/inc/Input/Server.php
blob: 60964fd8f760f796223ce43d3fd553f711cf0dca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace dokuwiki\Input;

/**
 * Internal class used for $_SERVER access in dokuwiki\Input\Input class
 */
class Server extends Input
{

    /** @noinspection PhpMissingParentConstructorInspection
     * Initialize the $access array, remove subclass members
     */
    public function __construct()
    {
        $this->access = &$_SERVER;
    }

}