]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix: add typehine for IRootFolder
authorArthur Schiwon <blizzz@arthur-schiwon.de>
Fri, 2 Jun 2023 23:34:06 +0000 (01:34 +0200)
committerArthur Schiwon <blizzz@arthur-schiwon.de>
Wed, 21 Jun 2023 14:53:19 +0000 (16:53 +0200)
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
lib/private/Files/Node/Node.php

index 0eef27161410a2018bde5efcd61557e8ca7426e5..4804f7046aa4ee25767b70bce80e94d9599da6a3 100644 (file)
@@ -34,6 +34,7 @@ use OC\Files\Mount\MoveableMount;
 use OC\Files\Utils\PathHelper;
 use OCP\Files\FileInfo;
 use OCP\Files\InvalidPathException;
+use OCP\Files\IRootFolder;
 use OCP\Files\NotFoundException;
 use OCP\Files\NotPermittedException;
 use OCP\Lock\LockedException;
@@ -47,10 +48,7 @@ class Node implements \OCP\Files\Node {
         */
        protected $view;
 
-       /**
-        * @var \OC\Files\Node\Root $root
-        */
-       protected $root;
+       protected IRootFolder $root;
 
        /**
         * @var string $path Absolute path to the node (e.g. /admin/files/folder/file)
@@ -72,7 +70,7 @@ class Node implements \OCP\Files\Node {
         * @param string $path
         * @param FileInfo $fileInfo
         */
-       public function __construct($root, $view, $path, $fileInfo = null, ?Node $parent = null, bool $infoHasSubMountsIncluded = true) {
+       public function __construct(IRootFolder $root, $view, $path, $fileInfo = null, ?Node $parent = null, bool $infoHasSubMountsIncluded = true) {
                if (Filesystem::normalizePath($view->getRoot()) !== '/') {
                        throw new PreConditionNotMetException('The view passed to the node should not have any fake root set');
                }
@@ -402,7 +400,7 @@ class Node implements \OCP\Files\Node {
 
        /**
         * @param string $targetPath
-        * @return \OC\Files\Node\Node
+        * @return \OCP\Files\Node
         * @throws InvalidPathException
         * @throws NotFoundException
         * @throws NotPermittedException if copy not allowed or failed
@@ -428,7 +426,7 @@ class Node implements \OCP\Files\Node {
 
        /**
         * @param string $targetPath
-        * @return \OC\Files\Node\Node
+        * @return \OCP\Files\Node
         * @throws InvalidPathException
         * @throws NotFoundException
         * @throws NotPermittedException if move not allowed or failed