diff options
author | Joas Schilling <coding@schilljs.com> | 2024-11-27 10:54:15 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-11-27 10:54:15 +0100 |
commit | d1e17e78b7f519cd66c57dd84b5cfff614a33fd7 (patch) | |
tree | d205985d10dcd97df0ca94ae8f4dd1a96b905373 /lib/public | |
parent | 21666e0bc0ccaaffcb7ee61782374ef591fbb7b6 (diff) | |
download | nextcloud-server-d1e17e78b7f519cd66c57dd84b5cfff614a33fd7.tar.gz nextcloud-server-d1e17e78b7f519cd66c57dd84b5cfff614a33fd7.zip |
fix(activity): Fix activity object type warnings
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/TaskProcessing/ISynchronousProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/TaskProcessing/ISynchronousProvider.php b/lib/public/TaskProcessing/ISynchronousProvider.php index 8cd504af189..d7e42684df5 100644 --- a/lib/public/TaskProcessing/ISynchronousProvider.php +++ b/lib/public/TaskProcessing/ISynchronousProvider.php @@ -28,7 +28,7 @@ interface ISynchronousProvider extends IProvider { * @param callable(float):bool $reportProgress Report the task progress. If this returns false, that means the task was cancelled and processing should be stopped. * @psalm-return array<string, list<numeric|string>|numeric|string> * @throws ProcessingException - *@since 30.0.0 + * @since 30.0.0 */ public function process(?string $userId, array $input, callable $reportProgress): array; } |