aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Connector/Sabre/Node.php
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-08-30 09:55:57 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-08-30 09:58:12 +0200
commit4f3b323fbace6afcf50b95073c2560c5b2a0b8f1 (patch)
tree7efc9d584ff05f649c544d916597896c4ee3e518 /apps/dav/lib/Connector/Sabre/Node.php
parent7f80dccbaccd90c0ec015a24e5e564d0a5f5d57c (diff)
downloadnextcloud-server-4f3b323fbace6afcf50b95073c2560c5b2a0b8f1.tar.gz
nextcloud-server-4f3b323fbace6afcf50b95073c2560c5b2a0b8f1.zip
Move dav utils functions to OCP\Files\DavUtil
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/dav/lib/Connector/Sabre/Node.php')
-rw-r--r--apps/dav/lib/Connector/Sabre/Node.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Node.php b/apps/dav/lib/Connector/Sabre/Node.php
index c4fc6282f84..5fb811ad1ab 100644
--- a/apps/dav/lib/Connector/Sabre/Node.php
+++ b/apps/dav/lib/Connector/Sabre/Node.php
@@ -38,9 +38,9 @@ namespace OCA\DAV\Connector\Sabre;
use OC\Files\Mount\MoveableMount;
use OC\Files\Node\File;
use OC\Files\Node\Folder;
-use OC\Files\Storage\Wrapper\Wrapper;
use OC\Files\View;
use OCA\DAV\Connector\Sabre\Exception\InvalidPath;
+use OCP\Files\DavUtil;
use OCP\Files\FileInfo;
use OCP\Files\IRootFolder;
use OCP\Files\StorageNotAvailableException;
@@ -253,7 +253,7 @@ abstract class Node implements \Sabre\DAV\INode {
*/
public function getFileId() {
if ($id = $this->info->getId()) {
- return \OCP\Util::getDavFileId($id);
+ return DavUtil::getDavFileId($id);
}
return null;
@@ -379,7 +379,7 @@ abstract class Node implements \Sabre\DAV\INode {
* @return string
*/
public function getDavPermissions() {
- return \OCP\Util::getDavPermissions($this->info);
+ return DavUtil::getDavPermissions($this->info);
}
public function getOwner() {