Browse Source

Fix docblock for addFileFromStream

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
tags/v25.0.0beta1
Daniel Kesselberg 2 years ago
parent
commit
95ec67ecd7
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      lib/private/Streamer.php

+ 2
- 2
lib/private/Streamer.php View File

@@ -148,13 +148,13 @@ class Streamer {
/**
* Add a file to the archive at the specified location and file name.
*
* @param string $stream Stream to read data from
* @param resource $stream Stream to read data from
* @param string $internalName Filepath and name to be used in the archive.
* @param int $size Filesize
* @param int|bool $time File mtime as int, or false
* @return bool $success
*/
public function addFileFromStream($stream, $internalName, $size, $time) {
public function addFileFromStream($stream, string $internalName, int $size, $time): bool {
$options = [];
if ($time) {
$options = [

Loading…
Cancel
Save