@@ -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 | |
@@ -26,7 +26,6 @@ |
||
| 26 | 26 | use Sabre\DAV\Exception\BadRequest; |
| 27 | 27 | use Sabre\DAV\Exception\PreconditionFailed; |
| 28 | 28 | use Sabre\DAV\ICollection; |
| 29 | - |
|
| 30 | 29 | use OCP\SystemTag\ISystemTagManager; |
| 31 | 30 | use OCP\SystemTag\ISystemTagObjectMapper; |
| 32 | 31 | use OCP\SystemTag\ISystemTag; |
@@ -89,6 +89,9 @@ |
||
| 89 | 89 | $this->user = $user; |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | + /** |
|
| 93 | + * @param string $tagId |
|
| 94 | + */ |
|
| 92 | 95 | function createFile($tagId, $data = null) { |
| 93 | 96 | try { |
| 94 | 97 | $tags = $this->tagManager->getTagsByIds([$tagId]); |
@@ -26,7 +26,6 @@ |
||
| 26 | 26 | use Sabre\DAV\Exception\MethodNotAllowed; |
| 27 | 27 | use Sabre\DAV\Exception\NotFound; |
| 28 | 28 | use Sabre\DAV\ICollection; |
| 29 | - |
|
| 30 | 29 | use OCP\SystemTag\ISystemTagManager; |
| 31 | 30 | use OCP\SystemTag\ISystemTagObjectMapper; |
| 32 | 31 | use OCP\IUserSession; |
@@ -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 | |
@@ -488,7 +488,7 @@ |
||
| 488 | 488 | |
| 489 | 489 | |
| 490 | 490 | /** |
| 491 | - * @param $path |
|
| 491 | + * @param string $path |
|
| 492 | 492 | * @param $uid |
| 493 | 493 | * @return mixed |
| 494 | 494 | */ |
@@ -32,7 +32,6 @@ |
||
| 32 | 32 | use OCA\Encryption\Crypto\Crypt; |
| 33 | 33 | use OCP\Encryption\Keys\IStorage; |
| 34 | 34 | use OCP\IConfig; |
| 35 | -use OCP\IDBConnection; |
|
| 36 | 35 | use OCP\ILogger; |
| 37 | 36 | use OCP\IUserSession; |
| 38 | 37 | |
@@ -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 | */ |
@@ -30,7 +30,6 @@ |
||
| 30 | 30 | use OCA\Federation\Hooks; |
| 31 | 31 | use OCA\Federation\Middleware\AddServerMiddleware; |
| 32 | 32 | use OCA\Federation\SyncFederationAddressBooks; |
| 33 | -use OCA\Federation\SyncJob; |
|
| 34 | 33 | use OCA\Federation\TrustedServers; |
| 35 | 34 | use OCP\API; |
| 36 | 35 | use OCP\App; |
@@ -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; |