diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-04-20 12:52:40 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-04-20 12:52:40 +0200 |
commit | 6da9e1a7420bfeb411848c95ba8c307e6a07b231 (patch) | |
tree | d57c3afd7d69a34bec520f3605c56418b3975fad /lib/private/appframework/utility | |
parent | 96a5b65484705fc611847f9161b677b5d0282083 (diff) | |
download | nextcloud-server-6da9e1a7420bfeb411848c95ba8c307e6a07b231.tar.gz nextcloud-server-6da9e1a7420bfeb411848c95ba8c307e6a07b231.zip |
Fix visibility of public API methods
Diffstat (limited to 'lib/private/appframework/utility')
-rw-r--r-- | lib/private/appframework/utility/simplecontainer.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/appframework/utility/simplecontainer.php b/lib/private/appframework/utility/simplecontainer.php index 9e80f89e458..c7dff6f4571 100644 --- a/lib/private/appframework/utility/simplecontainer.php +++ b/lib/private/appframework/utility/simplecontainer.php @@ -106,7 +106,7 @@ class SimpleContainer extends \Pimple\Container implements \OCP\IContainer { * @param string $name * @param mixed $value */ - function registerParameter($name, $value) { + public function registerParameter($name, $value) { $this[$name] = $value; } @@ -119,7 +119,7 @@ class SimpleContainer extends \Pimple\Container implements \OCP\IContainer { * @param \Closure $closure the closure to be called on service creation * @param bool $shared */ - function registerService($name, \Closure $closure, $shared = true) { + public function registerService($name, \Closure $closure, $shared = true) { if (isset($this[$name])) { unset($this[$name]); } |