diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-28 13:14:32 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-05 16:53:57 +0200 |
commit | 149792abe629c3105c7966ffb14c7514d4bcb3c5 (patch) | |
tree | a2bee1f2b4f27b94a026aacd9999b013fcec6c00 /lib/private/streamer.php | |
parent | cab0be6eedef14c419a2c94dce0461418e5f9cf8 (diff) | |
download | nextcloud-server-149792abe629c3105c7966ffb14c7514d4bcb3c5.tar.gz nextcloud-server-149792abe629c3105c7966ffb14c7514d4bcb3c5.zip |
Clean PHPDoc
Diffstat (limited to 'lib/private/streamer.php')
-rw-r--r-- | lib/private/streamer.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/private/streamer.php b/lib/private/streamer.php index 6f0a70e2388..b6e6892b6c7 100644 --- a/lib/private/streamer.php +++ b/lib/private/streamer.php @@ -89,9 +89,9 @@ class Streamer { /** * Add a file to the archive at the specified location and file name. * - * @param string $stream Stream to read data from - * @param string $internalName Filepath and name to be used in the archive. - * @param int $size Filesize + * @param string $stream Stream to read data from + * @param string $internalName Filepath and name to be used in the archive. + * @param int $size Filesize * @return bool $success */ public function addFileFromStream($stream, $internalName, $size){ @@ -101,17 +101,17 @@ class Streamer { return $this->streamerInstance->addFileFromStream($stream, $internalName, $size); } } - + /** * Add an empty directory entry to the archive. * - * @param string $directoryPath Directory Path and name to be added to the archive. + * @param string $dirName Directory Path and name to be added to the archive. * @return bool $success */ public function addEmptyDir($dirName){ return $this->streamerInstance->addEmptyDir($dirName); } - + /** * Close the archive. * A closed archive can no longer have new files added to it. After |