<?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;
    }
}