@@ -28,6 +28,9 @@ |
||
28 | 28 | |
29 | 29 | protected $mounts = []; |
30 | 30 | |
31 | + /** |
|
32 | + * @param string $mountPoint |
|
33 | + */ |
|
31 | 34 | protected function registerMount($userId, $storage, $mountPoint, $arguments = null) { |
32 | 35 | if (!isset($this->mounts[$userId])) { |
33 | 36 | $this->mounts[$userId] = []; |
@@ -128,7 +128,6 @@ |
||
128 | 128 | /** |
129 | 129 | * Get $n re-shares from the database |
130 | 130 | * |
131 | - * @param int $n The max number of shares to fetch |
|
132 | 131 | * @return \Doctrine\DBAL\Driver\Statement |
133 | 132 | */ |
134 | 133 | private function getReShares() { |
@@ -30,7 +30,6 @@ |
||
30 | 30 | use OCP\SystemTag\TagAlreadyExistsException; |
31 | 31 | use OCP\SystemTag\TagNotFoundException; |
32 | 32 | use Symfony\Component\EventDispatcher\EventDispatcherInterface; |
33 | -use OCP\IUserManager; |
|
34 | 33 | use OCP\IGroupManager; |
35 | 34 | use OCP\SystemTag\ISystemTag; |
36 | 35 | use OCP\IUser; |
@@ -30,7 +30,6 @@ |
||
30 | 30 | * StorageTimeoutException constructor. |
31 | 31 | * |
32 | 32 | * @param string $message |
33 | - * @param int $code |
|
34 | 33 | * @param \Exception $previous |
35 | 34 | * @since 9.0.0 |
36 | 35 | */ |
@@ -30,7 +30,6 @@ |
||
30 | 30 | * StorageTimeoutException constructor. |
31 | 31 | * |
32 | 32 | * @param string $message |
33 | - * @param int $code |
|
34 | 33 | * @param \Exception $previous |
35 | 34 | * @since 9.0.0 |
36 | 35 | */ |
@@ -30,7 +30,6 @@ |
||
30 | 30 | * StorageTimeoutException constructor. |
31 | 31 | * |
32 | 32 | * @param string $message |
33 | - * @param int $code |
|
34 | 33 | * @param \Exception $previous |
35 | 34 | * @since 9.0.0 |
36 | 35 | */ |
@@ -30,7 +30,6 @@ |
||
30 | 30 | * StorageTimeoutException constructor. |
31 | 31 | * |
32 | 32 | * @param string $message |
33 | - * @param int $code |
|
34 | 33 | * @param \Exception $previous |
35 | 34 | * @since 9.0.0 |
36 | 35 | */ |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | /** |
323 | 323 | * store remote ID in federated reShare table |
324 | 324 | * |
325 | - * @param $shareId |
|
325 | + * @param integer $shareId |
|
326 | 326 | * @param $remoteId |
327 | 327 | */ |
328 | 328 | public function storeRemoteId($shareId, $remoteId) { |
@@ -653,7 +653,7 @@ discard block |
||
653 | 653 | /** |
654 | 654 | * get database row of a give share |
655 | 655 | * |
656 | - * @param $id |
|
656 | + * @param integer $id |
|
657 | 657 | * @return array |
658 | 658 | * @throws ShareNotFound |
659 | 659 | */ |
@@ -24,26 +24,30 @@ |
||
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @param string $message |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function info($message); |
29 | 30 | |
30 | 31 | /** |
31 | 32 | * @param string $message |
33 | + * @return void |
|
32 | 34 | */ |
33 | 35 | public function warning($message); |
34 | 36 | |
35 | 37 | /** |
36 | 38 | * @param int $max |
39 | + * @return void |
|
37 | 40 | */ |
38 | 41 | public function startProgress($max = 0); |
39 | 42 | |
40 | 43 | /** |
41 | 44 | * @param int $step |
45 | + * @return void |
|
42 | 46 | */ |
43 | 47 | public function advance($step = 1); |
44 | 48 | |
45 | 49 | /** |
46 | - * @param int $max |
|
50 | + * @return void |
|
47 | 51 | */ |
48 | 52 | public function finishProgress(); |
49 | 53 |