summaryrefslogtreecommitdiffstats
path: root/lib/private/Server.php
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2020-04-11 08:21:35 +0200
committerGitHub <noreply@github.com>2020-04-11 08:21:35 +0200
commitb5a30d5cd6b53831c0d6d2fd074dc0000fa811de (patch)
tree386f3cb5df4630a1e87dae706667772e590596b8 /lib/private/Server.php
parent97de425a171adf9194dae75eede74cf9f3356cc8 (diff)
parenteea282ccc0d9dfae2d321efddce99cdb18158338 (diff)
downloadnextcloud-server-b5a30d5cd6b53831c0d6d2fd074dc0000fa811de.tar.gz
nextcloud-server-b5a30d5cd6b53831c0d6d2fd074dc0000fa811de.zip
Merge pull request #20426 from nextcloud/techdebt/psr2
It is done
Diffstat (limited to 'lib/private/Server.php')
-rw-r--r--lib/private/Server.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Server.php b/lib/private/Server.php
index 629673418f7..1a3eabc852e 100644
--- a/lib/private/Server.php
+++ b/lib/private/Server.php
@@ -1971,14 +1971,14 @@ class Server extends ServerContainer implements IServerContainer {
/**
* @return IMountManager
**/
- function getMountManager() {
+ public function getMountManager() {
return $this->query(IMountManager::class);
}
/**
* @return IUserMountCache
*/
- function getUserMountCache() {
+ public function getUserMountCache() {
return $this->query(IUserMountCache::class);
}