diff options
author | Marcel Klehr <mklehr@gmx.net> | 2024-05-06 11:01:23 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2024-05-14 11:38:40 +0200 |
commit | 8ccb29ae3b071f59d35f7fdc705ae0a3d2a07ea9 (patch) | |
tree | 8f1f0efd2b708f5a3b25d101bbe36bcce926088c /core/Controller/TaskProcessingApiController.php | |
parent | ef44af1f4804c6dffa9c2565431ab6973d6d7270 (diff) | |
download | nextcloud-server-8ccb29ae3b071f59d35f7fdc705ae0a3d2a07ea9.tar.gz nextcloud-server-8ccb29ae3b071f59d35f7fdc705ae0a3d2a07ea9.zip |
fix: psalm issues
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'core/Controller/TaskProcessingApiController.php')
-rw-r--r-- | core/Controller/TaskProcessingApiController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Controller/TaskProcessingApiController.php b/core/Controller/TaskProcessingApiController.php index de452c30aaa..a32b11451b3 100644 --- a/core/Controller/TaskProcessingApiController.php +++ b/core/Controller/TaskProcessingApiController.php @@ -104,7 +104,7 @@ class TaskProcessingApiController extends \OCP\AppFramework\OCSController { * @param string $appId ID of the app that will execute the task * @param string $identifier An arbitrary identifier for the task * - * @return DataResponse<Http::STATUS_OK, array{task: CoreTaskProcessingTask}, array{}>|DataResponse<Http::STATUS_INTERNAL_SERVER_ERROR|Http::STATUS_BAD_REQUEST|Http::STATUS_PRECONDITION_FAILED, array{message: string}, array{}> + * @return DataResponse<Http::STATUS_OK, array{task: CoreTaskProcessingTask}, array{}>|DataResponse<Http::STATUS_INTERNAL_SERVER_ERROR|Http::STATUS_BAD_REQUEST|Http::STATUS_PRECONDITION_FAILED|Http::STATUS_UNAUTHORIZED, array{message: string}, array{}> * * 200: Task scheduled successfully * 400: Scheduling task is not possible |