diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-06-23 13:01:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 13:01:35 +0200 |
commit | f8153a6afc8a2c2e7fe391128919d1460fefc4a3 (patch) | |
tree | 6d6d9fd34f8a9e546b0a83a6fd42409d2f25d01f /apps/dav/lib | |
parent | 859d7fc4b00252626d2976d345077915c1068dad (diff) | |
parent | 09c6cd77ecb7c4ead4d68226a693e7588df80d09 (diff) | |
download | nextcloud-server-f8153a6afc8a2c2e7fe391128919d1460fefc4a3.tar.gz nextcloud-server-f8153a6afc8a2c2e7fe391128919d1460fefc4a3.zip |
Merge pull request #32701 from nextcloud/fix/type-error-objectree
Fix type error in Sabre/Connector/Directory
Diffstat (limited to 'apps/dav/lib')
-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; } |