Browse Source

Fix type for resource

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
pull/32485/head
Daniel Kesselberg 4 years ago
parent
commit
be99ea969e
No known key found for this signature in database GPG Key ID: 36E3664E099D0614
  1. 2
      lib/public/AppFramework/Http/ZipResponse.php

2
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;

Loading…
Cancel
Save