Skip to content
Snippets Groups Projects
Commit a0cb52c9 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Fix PHPDoc and signature

parent 2d7528bc
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ class SyncFederationAddressBooks extends Command { ...@@ -14,7 +14,7 @@ class SyncFederationAddressBooks extends Command {
private $syncService; private $syncService;
/** /**
* @param DbHandler $dbHandler * @param \OCA\Federation\SyncFederationAddressBooks $syncService
*/ */
function __construct(\OCA\Federation\SyncFederationAddressBooks $syncService) { function __construct(\OCA\Federation\SyncFederationAddressBooks $syncService) {
parent::__construct(); parent::__construct();
...@@ -31,6 +31,7 @@ class SyncFederationAddressBooks extends Command { ...@@ -31,6 +31,7 @@ class SyncFederationAddressBooks extends Command {
/** /**
* @param InputInterface $input * @param InputInterface $input
* @param OutputInterface $output * @param OutputInterface $output
* @return int
*/ */
protected function execute(InputInterface $input, OutputInterface $output) { protected function execute(InputInterface $input, OutputInterface $output) {
...@@ -46,5 +47,7 @@ class SyncFederationAddressBooks extends Command { ...@@ -46,5 +47,7 @@ class SyncFederationAddressBooks extends Command {
$progress->finish(); $progress->finish();
$output->writeln(''); $output->writeln('');
return 0;
} }
} }
...@@ -18,12 +18,16 @@ class SyncFederationAddressBooks { ...@@ -18,12 +18,16 @@ class SyncFederationAddressBooks {
/** /**
* @param DbHandler $dbHandler * @param DbHandler $dbHandler
* @param SyncService $syncService
*/ */
function __construct(DbHandler $dbHandler, $syncService) { function __construct(DbHandler $dbHandler, SyncService $syncService) {
$this->syncService = $syncService; $this->syncService = $syncService;
$this->dbHandler = $dbHandler; $this->dbHandler = $dbHandler;
} }
/**
* @param \Closure $callback
*/
public function syncThemAll(\Closure $callback) { public function syncThemAll(\Closure $callback) {
$trustedServers = $this->dbHandler->getAllServer(); $trustedServers = $this->dbHandler->getAllServer();
......
...@@ -63,4 +63,4 @@ class SyncFederationAddressbooksTest extends \Test\TestCase { ...@@ -63,4 +63,4 @@ class SyncFederationAddressbooksTest extends \Test\TestCase {
}); });
$this->assertEquals(2, count($this->callBacks)); $this->assertEquals(2, count($this->callBacks));
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment