diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-10-16 23:35:33 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-10-16 23:35:33 +0200 |
commit | c4bb69c143bbd5c493012ae5830e09481e8784a7 (patch) | |
tree | 5d42f7213cb52643563ed9024290bc7659eaec0b /apps | |
parent | d4d1952f673aa21eaa3a99817a762685a77c2e16 (diff) | |
download | nextcloud-server-c4bb69c143bbd5c493012ae5830e09481e8784a7.tar.gz nextcloud-server-c4bb69c143bbd5c493012ae5830e09481e8784a7.zip |
Specify that userId can be null
This fixes a psalm false-positive where the method is called with null, since
the method actually handle this correctly already
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/Command/ListCommand.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Command/ListCommand.php b/apps/files_external/lib/Command/ListCommand.php index fadf5d8de27..461991c073b 100644 --- a/apps/files_external/lib/Command/ListCommand.php +++ b/apps/files_external/lib/Command/ListCommand.php @@ -112,7 +112,7 @@ class ListCommand extends Base { } /** - * @param string $userId + * @param ?string|ListCommand::ALL $userId * @param StorageConfig[] $mounts * @param InputInterface $input * @param OutputInterface $output |