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