Skip to content

Commit

Permalink
chore: code style fixes by php-cs-fixer
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas <jonas@freesources.org>
  • Loading branch information
mejo- committed Oct 23, 2024
1 parent 073229e commit dd9eef2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public function boot(IBootcontext $context): void {
}

private function registerMountProvider(IMountProviderCollection $collection,
MountProvider $provider): void {
MountProvider $provider): void {
$collection->registerProvider($provider);
}
}
10 changes: 5 additions & 5 deletions lib/Controller/PageTrashController.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ class PageTrashController extends Controller {
use ErrorHelper;

public function __construct(
string $appName,
IRequest $request,
private PageService $service,
IUserSession $userSession,
private LoggerInterface $logger,
string $appName,
IRequest $request,
private PageService $service,
IUserSession $userSession,
private LoggerInterface $logger,
) {
parent::__construct($appName, $request);
$this->userSession = $userSession;
Expand Down
2 changes: 1 addition & 1 deletion lib/SetupChecks/CirclesAppIsEnableCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class CirclesAppIsEnableCheck implements ISetupCheck {
public function __construct(
private IL10N $l10n,
private IL10N $l10n,
private IAppManager $appManager,
) {
}
Expand Down
2 changes: 1 addition & 1 deletion lib/SetupChecks/PDOSQLiteDriverIsEnableCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class PDOSQLiteDriverIsEnableCheck implements ISetupCheck {
public function __construct(
private IL10N $l10n,
private IL10N $l10n,
private SearchService $searchService,
) {
}
Expand Down

0 comments on commit dd9eef2

Please sign in to comment.