aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-11-27 10:54:15 +0100
committerJoas Schilling <coding@schilljs.com>2024-11-27 10:54:15 +0100
commitd1e17e78b7f519cd66c57dd84b5cfff614a33fd7 (patch)
treed205985d10dcd97df0ca94ae8f4dd1a96b905373 /lib/public
parent21666e0bc0ccaaffcb7ee61782374ef591fbb7b6 (diff)
downloadnextcloud-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.php2
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;
}