aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/public/AppFramework/Http/ZipResponse.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/AppFramework/Http/ZipResponse.php b/lib/public/AppFramework/Http/ZipResponse.php
index c3a7e089bdc..7495583ae12 100644
--- a/lib/public/AppFramework/Http/ZipResponse.php
+++ b/lib/public/AppFramework/Http/ZipResponse.php
@@ -37,11 +37,11 @@ use OCP\IRequest;
* @since 15.0.0
*/
class ZipResponse extends Response implements ICallbackResponse {
- /** @var resource[] Files to be added to the zip response */
- private $resources = [];
+ /** @var array{internalName: string, resource: string, 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 $name;
- private $request;
+ private string $name;
+ private IRequest $request;
/**
* @since 15.0.0