diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-06-23 11:42:14 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-07-05 14:44:44 +0200 |
commit | ec5cbdeb7ffb87c0169c39e6f44846e819b41f14 (patch) | |
tree | 275f11c139076fbcb60cc39c8ce609dfd3f41f82 /lib/private/Avatar/GuestAvatar.php | |
parent | 812016d62614ac3669a3fdf51fa2e07170e08c08 (diff) | |
download | nextcloud-server-ec5cbdeb7ffb87c0169c39e6f44846e819b41f14.tar.gz nextcloud-server-ec5cbdeb7ffb87c0169c39e6f44846e819b41f14.zip |
Make Color class public
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'lib/private/Avatar/GuestAvatar.php')
-rw-r--r-- | lib/private/Avatar/GuestAvatar.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Avatar/GuestAvatar.php b/lib/private/Avatar/GuestAvatar.php index f3dde0840e9..79d7e6ee094 100644 --- a/lib/private/Avatar/GuestAvatar.php +++ b/lib/private/Avatar/GuestAvatar.php @@ -53,7 +53,8 @@ class GuestAvatar extends Avatar { * Tests if the user has an avatar. */ public function exists(): bool { - return true; // Guests always have an avatar. + // Guests always have an avatar. + return true; } /** |