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/Collaboration | |
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/Collaboration')
-rw-r--r-- | lib/private/Collaboration/Resources/Collection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Collaboration/Resources/Collection.php b/lib/private/Collaboration/Resources/Collection.php index 2e67c041566..e34c38a80cd 100644 --- a/lib/private/Collaboration/Resources/Collection.php +++ b/lib/private/Collaboration/Resources/Collection.php @@ -37,7 +37,7 @@ use OCP\IDBConnection; use OCP\IUser; class Collection implements ICollection { - /** @var IManager|Manager */ + /** @var Manager */ protected $manager; /** @var IDBConnection */ |