@@ -75,6 +75,9 @@ |
||
| 75 | 75 | return false; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | + /** |
|
| 79 | + * @param string $path |
|
| 80 | + */ |
|
| 78 | 81 | private function setMetaData($path, $metaData) { |
| 79 | 82 | $this->metaData[ltrim($path, '/')] = $metaData; |
| 80 | 83 | } |
@@ -32,7 +32,6 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | namespace OCA\Files_External\Lib\Storage; |
| 34 | 34 | use Icewind\Streams\IteratorDirectory; |
| 35 | - |
|
| 36 | 35 | use Icewind\Streams\RetryWrapper; |
| 37 | 36 | use phpseclib\Net\SFTP\Stream; |
| 38 | 37 | |
@@ -335,7 +335,7 @@ |
||
| 335 | 335 | * split user and remote from federated cloud id |
| 336 | 336 | * |
| 337 | 337 | * @param string $address federated share address |
| 338 | - * @return array [user, remoteURL] |
|
| 338 | + * @return string[] [user, remoteURL] |
|
| 339 | 339 | * @throws \Exception |
| 340 | 340 | */ |
| 341 | 341 | public function splitUserRemote($address) { |
@@ -325,6 +325,9 @@ |
||
| 325 | 325 | return $result; |
| 326 | 326 | } |
| 327 | 327 | |
| 328 | + /** |
|
| 329 | + * @param string $mountPoint |
|
| 330 | + */ |
|
| 328 | 331 | public function removeShare($mountPoint) { |
| 329 | 332 | |
| 330 | 333 | $mountPointObj = $this->mountManager->find($mountPoint); |
@@ -130,7 +130,6 @@ |
||
| 130 | 130 | /** |
| 131 | 131 | * Get $n re-shares from the database |
| 132 | 132 | * |
| 133 | - * @param int $n The max number of shares to fetch |
|
| 134 | 133 | * @return \Doctrine\DBAL\Driver\Statement |
| 135 | 134 | */ |
| 136 | 135 | private function getReShares() { |
@@ -279,7 +279,7 @@ |
||
| 279 | 279 | /** |
| 280 | 280 | * get share ID |
| 281 | 281 | * |
| 282 | - * @return integer unique share ID |
|
| 282 | + * @return string unique share ID |
|
| 283 | 283 | */ |
| 284 | 284 | public function getShareId() { |
| 285 | 285 | return $this->newShare->getId(); |
@@ -23,7 +23,6 @@ |
||
| 23 | 23 | |
| 24 | 24 | namespace OCA\Files_Trashbin\BackgroundJob; |
| 25 | 25 | |
| 26 | -use OCP\IConfig; |
|
| 27 | 26 | use OCP\IUser; |
| 28 | 27 | use OCP\IUserManager; |
| 29 | 28 | use OCA\Files_Trashbin\AppInfo\Application; |
@@ -110,7 +110,7 @@ |
||
| 110 | 110 | * check if it is a file located in data/user/files only files in the |
| 111 | 111 | * 'files' directory should be moved to the trash |
| 112 | 112 | * |
| 113 | - * @param $path |
|
| 113 | + * @param string $path |
|
| 114 | 114 | * @return bool |
| 115 | 115 | */ |
| 116 | 116 | protected function shouldMoveToTrash($path){ |
@@ -671,7 +671,7 @@ discard block |
||
| 671 | 671 | * if the size limit for the trash bin is reached, we delete the oldest |
| 672 | 672 | * files in the trash bin until we meet the limit again |
| 673 | 673 | * |
| 674 | - * @param array $files |
|
| 674 | + * @param \OCP\Files\FileInfo[] $files |
|
| 675 | 675 | * @param string $user |
| 676 | 676 | * @param int $availableSpace available disc space |
| 677 | 677 | * @return int size of deleted files |
@@ -699,7 +699,7 @@ discard block |
||
| 699 | 699 | /** |
| 700 | 700 | * delete files older then max storage time |
| 701 | 701 | * |
| 702 | - * @param array $files list of files sorted by mtime |
|
| 702 | + * @param \OCP\Files\FileInfo[] $files list of files sorted by mtime |
|
| 703 | 703 | * @param string $user |
| 704 | 704 | * @return integer[] size of deleted files and number of deleted files |
| 705 | 705 | */ |