diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-06-02 10:23:39 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-06-14 13:01:06 +0200 |
commit | 046357ec7559363664b624a29c96390efb750565 (patch) | |
tree | 050c2496f0c7d163dba3472c60c5448e428b1f73 /apps/dav/lib/Connector | |
parent | 8809de1eefbfa78998d9379a7040858d8e01e820 (diff) | |
download | nextcloud-server-046357ec7559363664b624a29c96390efb750565.tar.gz nextcloud-server-046357ec7559363664b624a29c96390efb750565.zip |
Fix type error in Sabre/Connector/Directory
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/dav/lib/Connector')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/Directory.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Directory.php b/apps/dav/lib/Connector/Sabre/Directory.php index 5280511d5be..b575a051b2a 100644 --- a/apps/dav/lib/Connector/Sabre/Directory.php +++ b/apps/dav/lib/Connector/Sabre/Directory.php @@ -66,7 +66,7 @@ class Directory extends \OCA\DAV\Connector\Sabre\Node implements \Sabre\DAV\ICol /** Cached quota info */ private ?array $quotaInfo = null; - private ?ObjectTree $tree = null; + private ?CachingTree $tree = null; /** @var array<string, array<int, FileMetadata>> */ private array $metadata = []; @@ -74,7 +74,7 @@ class Directory extends \OCA\DAV\Connector\Sabre\Node implements \Sabre\DAV\ICol /** * Sets up the node, expects a full path name */ - public function __construct(View $view, FileInfo $info, ?ObjectTree $tree = null, IShareManager $shareManager = null) { + public function __construct(View $view, FileInfo $info, ?CachingTree $tree = null, IShareManager $shareManager = null) { parent::__construct($view, $info, $shareManager); $this->tree = $tree; } |