diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-04-19 00:26:17 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-04-19 00:26:17 +0200 |
commit | 96a5b65484705fc611847f9161b677b5d0282083 (patch) | |
tree | 2a0b922e55ababee6fc0a2a6a33e2c68a27bb602 /lib/public/irequest.php | |
parent | cdf82909b8225a885fbf92b78208fb1fe258853e (diff) | |
download | nextcloud-server-96a5b65484705fc611847f9161b677b5d0282083.tar.gz nextcloud-server-96a5b65484705fc611847f9161b677b5d0282083.zip |
Fix visibility of interfaces in \OCP
Diffstat (limited to 'lib/public/irequest.php')
-rw-r--r-- | lib/public/irequest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/irequest.php b/lib/public/irequest.php index a236c5df9a0..20fa543dd69 100644 --- a/lib/public/irequest.php +++ b/lib/public/irequest.php @@ -68,7 +68,7 @@ interface IRequest { * @return string * @since 6.0.0 */ - function getHeader($name); + public function getHeader($name); /** * Lets you access post and get parameters by the index @@ -131,7 +131,7 @@ interface IRequest { * @return array the value in the $_COOKIE element * @since 6.0.0 */ - function getCookie($key); + public function getCookie($key); /** |