From be99ea969eb1a8b56ff1495c43f083021356c345 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Wed, 18 May 2022 23:01:21 +0200 Subject: Fix type for resource Signed-off-by: Daniel Kesselberg --- lib/public/AppFramework/Http/ZipResponse.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/public/AppFramework/Http') diff --git a/lib/public/AppFramework/Http/ZipResponse.php b/lib/public/AppFramework/Http/ZipResponse.php index 7495583ae12..23e9f1f7a94 100644 --- a/lib/public/AppFramework/Http/ZipResponse.php +++ b/lib/public/AppFramework/Http/ZipResponse.php @@ -37,7 +37,7 @@ use OCP\IRequest; * @since 15.0.0 */ class ZipResponse extends Response implements ICallbackResponse { - /** @var array{internalName: string, resource: string, size: int, time: int}[] Files to be added to the zip response */ + /** @var array{internalName: string, resource: resource, size: int, time: int}[] Files to be added to the zip response */ private array $resources = []; /** @var string Filename that the zip file should have */ private string $name; -- cgit v1.2.3