From 35e85c3b818dedcc0096a95a6472a64168602d51 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Sat, 4 Jan 2025 00:58:54 +0100 Subject: [PATCH] fix(HTTP): Adjust JSONResponse data type Signed-off-by: provokateurin [skip ci] --- lib/public/AppFramework/Http/JSONResponse.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/AppFramework/Http/JSONResponse.php b/lib/public/AppFramework/Http/JSONResponse.php index f600429632385..4385e2ffd557b 100644 --- a/lib/public/AppFramework/Http/JSONResponse.php +++ b/lib/public/AppFramework/Http/JSONResponse.php @@ -34,7 +34,7 @@ * A renderer for JSON calls * @since 6.0.0 * @template S of int - * @template-covariant T of array|object|\stdClass|\JsonSerializable + * @template-covariant T of null|string|int|float|bool|array|\stdClass|\JsonSerializable * @template H of array * @template-extends Response> */