summaryrefslogtreecommitdiffstats
path: root/lib/private/appframework/http
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-04-20 12:52:40 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-04-20 12:52:40 +0200
commit6da9e1a7420bfeb411848c95ba8c307e6a07b231 (patch)
treed57c3afd7d69a34bec520f3605c56418b3975fad /lib/private/appframework/http
parent96a5b65484705fc611847f9161b677b5d0282083 (diff)
downloadnextcloud-server-6da9e1a7420bfeb411848c95ba8c307e6a07b231.tar.gz
nextcloud-server-6da9e1a7420bfeb411848c95ba8c307e6a07b231.zip
Fix visibility of public API methods
Diffstat (limited to 'lib/private/appframework/http')
-rw-r--r--lib/private/appframework/http/request.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php
index 002c1151adc..8176622e3e6 100644
--- a/lib/private/appframework/http/request.php
+++ b/lib/private/appframework/http/request.php
@@ -360,7 +360,7 @@ class Request implements \ArrayAccess, \Countable, IRequest {
* @param string $key the key that will be taken from the $_COOKIE array
* @return array the value in the $_COOKIE element
*/
- function getCookie($key) {
+ public function getCookie($key) {
return isset($this->cookies[$key]) ? $this->cookies[$key] : null;
}