summaryrefslogtreecommitdiffstats
path: root/lib/private/avatarmanager.php
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/avatarmanager.php
parent96a5b65484705fc611847f9161b677b5d0282083 (diff)
downloadnextcloud-server-6da9e1a7420bfeb411848c95ba8c307e6a07b231.tar.gz
nextcloud-server-6da9e1a7420bfeb411848c95ba8c307e6a07b231.zip
Fix visibility of public API methods
Diffstat (limited to 'lib/private/avatarmanager.php')
-rw-r--r--lib/private/avatarmanager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/avatarmanager.php b/lib/private/avatarmanager.php
index 578ab05d49b..0ff4a3444e2 100644
--- a/lib/private/avatarmanager.php
+++ b/lib/private/avatarmanager.php
@@ -38,7 +38,7 @@ class AvatarManager implements IAvatarManager {
* @param string $user the ownCloud user id
* @return \OCP\IAvatar
*/
- function getAvatar($user) {
+ public function getAvatar($user) {
return new Avatar($user);
}
}