Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Appelman <[email protected]>
  • Loading branch information
icewind1991 committed Feb 10, 2025
1 parent 1315c99 commit 5b0e9de
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions lib/Migration/OwncloudGuestsMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,9 @@

namespace OCA\Guests\Migration;

use OCA\Guests\GuestManager;
use OCA\Guests\UserBackend;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IConfig;
use OCP\IDBConnection;
use OCP\IUser;
use OCP\IUserManager;
use OCP\Migration\IOutput;
use OCP\Migration\IRepairStep;
Expand All @@ -30,7 +27,8 @@ public function __construct(
protected IConfig $config,
protected IUserManager $userManager,
protected UserBackend $guestUserBackend,
) {}
) {
}

public function getName(): string {
return 'Converts owncloud guests to nextcloud guests';
Expand All @@ -45,7 +43,7 @@ public function run(IOutput $output): void {
}
}

protected function shouldRun(): bool{
protected function shouldRun(): bool {
$schema = $this->db->createSchema();
$prefix = $this->config->getSystemValueString('dbtableprefix', 'oc_');

Expand Down

0 comments on commit 5b0e9de

Please sign in to comment.