@@ -26,7 +26,6 @@ discard block |
||
26 | 26 | use OCA\DAV\CalDAV\CalDavBackend; |
27 | 27 | use OCA\DAV\CardDAV\CardDavBackend; |
28 | 28 | use OCA\DAV\CardDAV\ContactsManager; |
29 | -use OCA\DAV\CardDAV\SyncJob; |
|
30 | 29 | use OCA\DAV\CardDAV\SyncService; |
31 | 30 | use OCA\DAV\Connector\Sabre\Principal; |
32 | 31 | use OCA\DAV\DAV\GroupPrincipalBackend; |
@@ -36,8 +35,6 @@ discard block |
||
36 | 35 | use \OCP\AppFramework\App; |
37 | 36 | use OCP\AppFramework\IAppContainer; |
38 | 37 | use OCP\Contacts\IManager; |
39 | -use OCP\IUser; |
|
40 | -use Sabre\VObject\Reader; |
|
41 | 38 | use Symfony\Component\EventDispatcher\GenericEvent; |
42 | 39 | |
43 | 40 | class Application extends App { |
@@ -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 { |
@@ -90,7 +90,7 @@ |
||
90 | 90 | * |
91 | 91 | * @param RequestInterface $request |
92 | 92 | * @param ResponseInterface $response |
93 | - * @return null|bool |
|
93 | + * @return null|false |
|
94 | 94 | */ |
95 | 95 | function httpPost(RequestInterface $request, ResponseInterface $response) { |
96 | 96 |
@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace OCA\DAV\CalDAV\Publishing\Xml; |
4 | 4 | |
5 | -use OCA\DAV\CalDAV\Publishing\PublishPlugin as Plugin; |
|
6 | 5 | use Sabre\Xml\Writer; |
7 | 6 | use Sabre\Xml\XmlSerializable; |
8 | 7 |
@@ -30,7 +30,6 @@ |
||
30 | 30 | private $publicURLs; |
31 | 31 | |
32 | 32 | /** |
33 | - * @param string[] $publicURLs |
|
34 | 33 | */ |
35 | 34 | public function __construct() { |
36 | 35 | $this->publicURLs = [ |