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/icontainer.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/icontainer.php')
-rw-r--r-- | lib/public/icontainer.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/icontainer.php b/lib/public/icontainer.php index 27ca544ec67..35bf6a76ce8 100644 --- a/lib/public/icontainer.php +++ b/lib/public/icontainer.php @@ -47,7 +47,7 @@ interface IContainer { * @return mixed * @since 6.0.0 */ - function query($name); + public function query($name); /** * A value is stored in the container with it's corresponding name @@ -57,7 +57,7 @@ interface IContainer { * @return void * @since 6.0.0 */ - function registerParameter($name, $value); + public function registerParameter($name, $value); /** * A service is registered in the container where a closure is passed in which will actually @@ -72,5 +72,5 @@ interface IContainer { * @return void * @since 6.0.0 */ - function registerService($name, \Closure $closure, $shared = true); + public function registerService($name, \Closure $closure, $shared = true); } |