Files
mr-legend_wiki/inc/Input/Server.php
T
2024-07-08 03:32:47 +09:00

18 lines
356 B
PHP

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