diff options
author | jld3103 <jld3103yt@gmail.com> | 2023-03-29 16:34:53 +0200 |
---|---|---|
committer | jld3103 <jld3103yt@gmail.com> | 2023-03-30 12:33:46 +0200 |
commit | 02f9c3a06f1087a19cd255c7544a30b444c18558 (patch) | |
tree | dd62e5a989de0c7c6802e4ec28818bcaa6b18f82 /lib/private/Repair | |
parent | 488dde12cd2d331ae64e3f4e6c7ad1937461b241 (diff) | |
download | nextcloud-server-02f9c3a06f1087a19cd255c7544a30b444c18558.tar.gz nextcloud-server-02f9c3a06f1087a19cd255c7544a30b444c18558.zip |
Use implementations instead of interfaces for accessing private methods
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'lib/private/Repair')
-rw-r--r-- | lib/private/Repair/NC16/ClearCollectionsAccessCache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Repair/NC16/ClearCollectionsAccessCache.php b/lib/private/Repair/NC16/ClearCollectionsAccessCache.php index 8bc73c8f66b..51a63406d22 100644 --- a/lib/private/Repair/NC16/ClearCollectionsAccessCache.php +++ b/lib/private/Repair/NC16/ClearCollectionsAccessCache.php @@ -35,7 +35,7 @@ class ClearCollectionsAccessCache implements IRepairStep { /** @var IConfig */ private $config; - /** @var IManager|Manager */ + /** @var Manager */ private $manager; public function __construct(IConfig $config, IManager $manager) { |