@@ -26,13 +26,11 @@ |
||
| 26 | 26 | use Sabre\DAV\Exception\NotFound; |
| 27 | 27 | use Sabre\DAV\Exception\BadRequest; |
| 28 | 28 | use Sabre\DAV\ICollection; |
| 29 | - |
|
| 30 | 29 | use OCP\SystemTag\ISystemTagManager; |
| 31 | 30 | use OCP\SystemTag\ISystemTag; |
| 32 | 31 | use OCP\SystemTag\TagNotFoundException; |
| 33 | 32 | use OCP\IGroupManager; |
| 34 | 33 | use OCP\IUserSession; |
| 35 | -use OC\User\NoUserException; |
|
| 36 | 34 | |
| 37 | 35 | class SystemTagsByIdCollection implements ICollection { |
| 38 | 36 | |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | |
| 119 | 119 | /** |
| 120 | 120 | * @param string $data |
| 121 | - * @return int |
|
| 121 | + * @return boolean |
|
| 122 | 122 | */ |
| 123 | 123 | public function stream_write($data) { |
| 124 | 124 | return false; |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | /** |
| 227 | - * @param $pos |
|
| 227 | + * @param integer $pos |
|
| 228 | 228 | * @return IFile | null |
| 229 | 229 | */ |
| 230 | 230 | private function getNodeForPosition($pos) { |
@@ -369,7 +369,7 @@ |
||
| 369 | 369 | * @param string $path path to the file which should be updated |
| 370 | 370 | * @param string $uid of the user who performs the operation |
| 371 | 371 | * @param array $accessList who has access to the file contains the key 'users' and 'public' |
| 372 | - * @return boolean |
|
| 372 | + * @return null|boolean |
|
| 373 | 373 | */ |
| 374 | 374 | public function update($path, $uid, array $accessList) { |
| 375 | 375 | |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | /** |
| 392 | 392 | * store remote ID in federated reShare table |
| 393 | 393 | * |
| 394 | - * @param $shareId |
|
| 394 | + * @param integer $shareId |
|
| 395 | 395 | * @param $remoteId |
| 396 | 396 | */ |
| 397 | 397 | public function storeRemoteId($shareId, $remoteId) { |
@@ -729,7 +729,7 @@ discard block |
||
| 729 | 729 | /** |
| 730 | 730 | * get database row of a give share |
| 731 | 731 | * |
| 732 | - * @param $id |
|
| 732 | + * @param integer $id |
|
| 733 | 733 | * @return array |
| 734 | 734 | * @throws ShareNotFound |
| 735 | 735 | */ |
@@ -22,7 +22,6 @@ |
||
| 22 | 22 | */ |
| 23 | 23 | namespace OCA\Federation\Command; |
| 24 | 24 | |
| 25 | -use OCA\Federation\DbHandler; |
|
| 26 | 25 | use Symfony\Component\Console\Command\Command; |
| 27 | 26 | use Symfony\Component\Console\Helper\ProgressBar; |
| 28 | 27 | use Symfony\Component\Console\Input\InputInterface; |
@@ -24,10 +24,6 @@ |
||
| 24 | 24 | |
| 25 | 25 | use OCA\DAV\CardDAV\SyncService; |
| 26 | 26 | use OCP\AppFramework\Http; |
| 27 | -use Symfony\Component\Console\Command\Command; |
|
| 28 | -use Symfony\Component\Console\Helper\ProgressBar; |
|
| 29 | -use Symfony\Component\Console\Input\InputInterface; |
|
| 30 | -use Symfony\Component\Console\Output\OutputInterface; |
|
| 31 | 27 | |
| 32 | 28 | class SyncFederationAddressBooks { |
| 33 | 29 | |
@@ -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() { |
@@ -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 | */ |
@@ -22,7 +22,6 @@ |
||
| 22 | 22 | namespace OCA\Testing\Locking; |
| 23 | 23 | |
| 24 | 24 | use OC\Lock\DBLockingProvider; |
| 25 | -use OC\Lock\MemcacheLockingProvider; |
|
| 26 | 25 | use OC\User\NoUserException; |
| 27 | 26 | use OCP\AppFramework\Http; |
| 28 | 27 | use OCP\Files\NotFoundException; |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |
| 80 | - * @return int |
|
| 80 | + * @return string |
|
| 81 | 81 | */ |
| 82 | 82 | static private function getRefreshInterval() { |
| 83 | 83 | //defaults to every hour |