]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix type for resource 32485/head
authorDaniel Kesselberg <mail@danielkesselberg.de>
Wed, 18 May 2022 21:01:21 +0000 (23:01 +0200)
committerDaniel Kesselberg <mail@danielkesselberg.de>
Tue, 24 May 2022 20:05:59 +0000 (22:05 +0200)
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
lib/public/AppFramework/Http/ZipResponse.php

index 7495583ae128185c2ad723739a732e1e0dfdf6e9..23e9f1f7a9455e0fb00995b3fa41fbd7cfb688ea 100644 (file)
@@ -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;