1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 03:34:04 +02:00

[ticket/14875] Move raw_variable() method to request_interface

PHPBB3-14875
This commit is contained in:
Marc Alexander
2016-12-02 11:36:07 +01:00
parent 08bf8812d3
commit 9bdd002f58
4 changed files with 28 additions and 23 deletions

View File

@@ -52,7 +52,7 @@ interface iohandler_interface
/**
* Returns server variable
*
* This function should work the same as request_interterface::server().
* This function should work the same as request_interface::server().
*
* @param string $name Name of the server variable
* @param mixed $default Default value to return when the requested variable does not exist
@@ -62,7 +62,7 @@ interface iohandler_interface
public function get_server_variable($name, $default = '');
/**
* Wrapper function for request_interterface::header()
* Wrapper function for request_interface::header()
*
* @param string $name Name of the request header variable
* @param mixed $default Default value to return when the requested variable does not exist