aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Lib/Backend
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-10-18 12:22:40 +0200
committerCarl Schwan <carl@carlschwan.eu>2022-10-18 12:28:34 +0200
commit732badf552c91733192e87d6ceb2848b4b75d439 (patch)
tree79003c742613b0794210a2ff17973efd32ba64b3 /apps/files_external/lib/Lib/Backend
parent94a0b270005ef95ccfbbe486fc7e37ac225e5afb (diff)
downloadnextcloud-server-732badf552c91733192e87d6ceb2848b4b75d439.tar.gz
nextcloud-server-732badf552c91733192e87d6ceb2848b4b75d439.zip
Additional type hinting found by psalm
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/files_external/lib/Lib/Backend')
-rw-r--r--apps/files_external/lib/Lib/Backend/Backend.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Backend/Backend.php b/apps/files_external/lib/Lib/Backend/Backend.php
index 845f51f5432..d0058e98b52 100644
--- a/apps/files_external/lib/Lib/Backend/Backend.php
+++ b/apps/files_external/lib/Lib/Backend/Backend.php
@@ -32,6 +32,7 @@ use OCA\Files_External\Lib\StorageModifierTrait;
use OCA\Files_External\Lib\VisibilityTrait;
use OCA\Files_External\Lib\IIdentifier;
use OCA\Files_External\Lib\IFrontendDefinition;
+use OCP\Files\Storage\IStorage;
/**
* Storage backend
@@ -75,7 +76,7 @@ class Backend implements \JsonSerializable, IIdentifier, IFrontendDefinition {
private $legacyAuthMechanism;
/**
- * @return string
+ * @return class-string<IStorage>
*/
public function getStorageClass() {
return $this->storageClass;