Skip to content

Commit

Permalink
style(PHP): satisfy php-cs
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
  • Loading branch information
blizzz committed Sep 23, 2024
1 parent be54cfb commit a004689
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Controller/LogoutController.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function __construct(
private IUserSession $userSession,
private ISession $session,
private LoggerInterface $logger,
private IEventDispatcher $eventDispatcher
private IEventDispatcher $eventDispatcher,
) {
parent::__construct($appName, $request);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Controller/SettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function __construct(
protected IAppConfig $config,
protected LoggerInterface $logger,
protected IL10N $l,
protected IEventDispatcher $eventDispatcher
protected IEventDispatcher $eventDispatcher,
) {
parent::__construct($appName, $request);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
define('PHPUNIT_RUN', 1);
}

require_once __DIR__.'/../../../../lib/base.php';
require_once __DIR__ . '/../../../../lib/base.php';

\OC::$composerAutoloader->addPsr4('Test\\', OC::$SERVERROOT . '/tests/lib/', true);

Expand Down

0 comments on commit a004689

Please sign in to comment.