mirror of
https://github.com/nextcloud/server.git
synced 2026-04-05 17:16:55 -04:00
Fix docblock for addFileFromStream
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
1fc2e903a7
commit
95ec67ecd7
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Reference in a new issue