diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-01-13 12:30:27 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2022-01-14 14:17:11 +0000 |
commit | 61624c2213f56621cbe837fbbb933b85c128128f (patch) | |
tree | e5533ef740ae1c61c0f60ed0c019433194201fbf /apps/workflowengine | |
parent | c3fcb2c19963f3ae5253ef5b2ffcc0353ddd3f03 (diff) | |
download | nextcloud-server-61624c2213f56621cbe837fbbb933b85c128128f.tar.gz nextcloud-server-61624c2213f56621cbe837fbbb933b85c128128f.zip |
Fix psalm issues
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/workflowengine')
-rw-r--r-- | apps/workflowengine/lib/Check/FileSystemTags.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/workflowengine/lib/Check/FileSystemTags.php b/apps/workflowengine/lib/Check/FileSystemTags.php index d3f02729f2f..008f47eca78 100644 --- a/apps/workflowengine/lib/Check/FileSystemTags.php +++ b/apps/workflowengine/lib/Check/FileSystemTags.php @@ -144,7 +144,10 @@ class FileSystemTags implements ICheck, IFileCheck { if ($groupFolderStorage === null) { throw new \LogicException('Should not happen: Storage is instance of GroupFolderStorage but no group folder storage found while unwrapping.'); } - /** @psalm-suppress UndefinedMethod */ + /** + * @psalm-suppress UndefinedDocblockClass + * @psalm-suppress UndefinedInterfaceMethod + */ $cacheId = $cache->getNumericStorageId() . '/' . $groupFolderStorage->getFolderId(); } else { $cacheId = $cache->getNumericStorageId(); |