diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-10-18 12:22:40 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-10-18 12:28:34 +0200 |
commit | 732badf552c91733192e87d6ceb2848b4b75d439 (patch) | |
tree | 79003c742613b0794210a2ff17973efd32ba64b3 /apps/files_external/lib/Lib/Backend | |
parent | 94a0b270005ef95ccfbbe486fc7e37ac225e5afb (diff) | |
download | nextcloud-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.php | 3 |
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; |