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/LegacyDependencyCheckPolyfill.php | |
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/LegacyDependencyCheckPolyfill.php')
-rw-r--r-- | apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php b/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php index c2562e5c64e..42a72e960ea 100644 --- a/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php +++ b/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php @@ -21,13 +21,15 @@ */ namespace OCA\Files_External\Lib; +use OCP\Files\Storage\IStorage; + /** * Polyfill for checking dependencies using legacy Storage::checkDependencies() */ trait LegacyDependencyCheckPolyfill { /** - * @return string + * @return class-string<IStorage> */ abstract public function getStorageClass(); |