aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-04-05 09:13:39 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-04-05 09:13:39 +0200
commit6633b4ced65f97495b1c123a9283c6f187debf41 (patch)
treee16c105e0fba4553975272f457f8635fdfe75214 /lib/private
parent8f26a5d766afb5b95f522e059ac9327a8d8eddcd (diff)
downloadnextcloud-server-6633b4ced65f97495b1c123a9283c6f187debf41.tar.gz
nextcloud-server-6633b4ced65f97495b1c123a9283c6f187debf41.zip
Remove unecessary fully qualified namespaces from phpdoc
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/Files/View.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php
index e864ddef84d..91e6cc2d60e 100644
--- a/lib/private/Files/View.php
+++ b/lib/private/Files/View.php
@@ -641,7 +641,7 @@ class View {
throw $e;
}
- /** @var \OC\Files\Storage\Storage $storage */
+ /** @var Storage $storage */
[$storage, $internalPath] = $this->resolvePath($path);
$target = $storage->fopen($internalPath, 'w');
if ($target) {
@@ -1126,7 +1126,7 @@ class View {
$run = $this->runHooks($hooks, $path);
[$storage, $internalPath] = Filesystem::resolvePath($absolutePath . $postFix);
if ($run and $storage) {
- /** @var \OC\Files\Storage\Storage $storage */
+ /** @var Storage $storage */
if (in_array('write', $hooks) || in_array('delete', $hooks)) {
try {
$this->changeLock($path, ILockingProvider::LOCK_EXCLUSIVE);
@@ -1296,7 +1296,7 @@ class View {
* If the file is not in cached it will be scanned
* If the file has changed on storage the cache will be updated
*
- * @param \OC\Files\Storage\Storage $storage
+ * @param Storage $storage
* @param string $internalPath
* @param string $relativePath
* @return ICacheEntry|bool
@@ -1547,7 +1547,7 @@ class View {
}
$path = Filesystem::normalizePath($this->fakeRoot . '/' . $path);
/**
- * @var \OC\Files\Storage\Storage $storage
+ * @var Storage $storage
* @var string $internalPath
*/
[$storage, $internalPath] = Filesystem::resolvePath($path);