You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?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;
- }
- }
|