@@ -52,7 +52,7 @@ |
||
52 | 52 | /** |
53 | 53 | * @param string $appName |
54 | 54 | * @param IRequest $request |
55 | - * @param Manager $userManager |
|
55 | + * @param UserManager $userManager |
|
56 | 56 | * @param DefaultTokenProvider $tokenProvider |
57 | 57 | * @param ISecureRandom $secureRandom |
58 | 58 | */ |
@@ -213,7 +213,7 @@ |
||
213 | 213 | * |
214 | 214 | * @param \Google_Service_Drive_DriveFile |
215 | 215 | * |
216 | - * @return true if the file is a Google Doc file, false otherwise |
|
216 | + * @return boolean if the file is a Google Doc file, false otherwise |
|
217 | 217 | */ |
218 | 218 | private function isGoogleDocFile($file) { |
219 | 219 | return $this->getGoogleDocExtension($file->getMimeType()) !== ''; |
@@ -20,7 +20,6 @@ |
||
20 | 20 | /** |
21 | 21 | * RemoveOldCalendarShares constructor. |
22 | 22 | * |
23 | - * @param IDBConnection $db |
|
24 | 23 | */ |
25 | 24 | public function __construct(IDBConnection $connection) { |
26 | 25 | $this->connection = $connection; |
@@ -278,6 +278,7 @@ |
||
278 | 278 | * get default share folder |
279 | 279 | * |
280 | 280 | * @param \OC\Files\View |
281 | + * @param View $view |
|
281 | 282 | * @return string |
282 | 283 | */ |
283 | 284 | public static function getShareFolder($view = null) { |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | * @param IRequest $request |
301 | 301 | * @throws LoginException |
302 | 302 | * @throws PasswordLoginForbiddenException |
303 | - * @return boolean |
|
303 | + * @return boolean|null |
|
304 | 304 | */ |
305 | 305 | public function logClientIn($user, $password, IRequest $request) { |
306 | 306 | $isTokenPassword = $this->isTokenPassword($password); |
@@ -340,6 +340,9 @@ discard block |
||
340 | 340 | return $this->config->getSystemValue('token_auth_enforced', false); |
341 | 341 | } |
342 | 342 | |
343 | + /** |
|
344 | + * @param string $username |
|
345 | + */ |
|
343 | 346 | protected function isTwoFactorEnforced($username) { |
344 | 347 | Util::emitHook( |
345 | 348 | '\OCA\Files_Sharing\API\Server2Server', |
@@ -27,13 +27,8 @@ |
||
27 | 27 | use OCA\Files_External\Lib\DefinitionParameter; |
28 | 28 | use OCA\Files_External\Service\BackendService; |
29 | 29 | use Symfony\Component\Console\Command\Command; |
30 | -use Symfony\Component\Console\Helper\Table; |
|
31 | -use Symfony\Component\Console\Helper\TableHelper; |
|
32 | -use Symfony\Component\Console\Input\ArrayInput; |
|
33 | 30 | use Symfony\Component\Console\Input\InputArgument; |
34 | 31 | use Symfony\Component\Console\Input\InputInterface; |
35 | -use Symfony\Component\Console\Input\InputOption; |
|
36 | -use Symfony\Component\Console\Input\Input; |
|
37 | 32 | use Symfony\Component\Console\Output\OutputInterface; |
38 | 33 | |
39 | 34 | class Backends extends Base { |
@@ -207,7 +207,7 @@ |
||
207 | 207 | * @param array $groupSharesById |
208 | 208 | * @param array $subShares |
209 | 209 | * |
210 | - * @return true if the share is valid, false if it needs repair |
|
210 | + * @return boolean if the share is valid, false if it needs repair |
|
211 | 211 | */ |
212 | 212 | private function isThisShareValid($groupSharesById, $subShares) { |
213 | 213 | $foundTargets = []; |
@@ -566,7 +566,7 @@ |
||
566 | 566 | /** |
567 | 567 | * update permissions in database |
568 | 568 | * |
569 | - * @param IShare $share |
|
569 | + * @param Share\IShare $share |
|
570 | 570 | * @param int $permissions |
571 | 571 | */ |
572 | 572 | protected function updatePermissionsInDatabase(IShare $share, $permissions) { |
@@ -1100,7 +1100,7 @@ |
||
1100 | 1100 | } |
1101 | 1101 | |
1102 | 1102 | /** |
1103 | - * @param array $reqs |
|
1103 | + * @param string[] $reqs |
|
1104 | 1104 | * @return bool |
1105 | 1105 | */ |
1106 | 1106 | private function checkRequirements($reqs) { |