0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-09-03 16:54:59 +00:00

Moves single constructor parameters to new lines.

Based on:
https://github.com/nextcloud/server/pull/38764#discussion_r1227630895

Signed-off-by: Faraz Samapoor <fsa@adlas.at>
This commit is contained in:
Faraz Samapoor 2023-06-13 11:29:52 +03:30 committed by Louis
commit bcfbcbb91c
3 changed files with 9 additions and 3 deletions

View file

@ -27,7 +27,9 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Disable extends Command {
public function __construct(protected IConfig $config) {
public function __construct(
protected IConfig $config,
) {
parent::__construct();
}

View file

@ -29,7 +29,9 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ShowKeyStorageRoot extends Command {
public function __construct(protected Util $util) {
public function __construct(
protected Util $util,
) {
parent::__construct();
}

View file

@ -27,7 +27,9 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Status extends Base {
public function __construct(protected IManager $encryptionManager) {
public function __construct(
protected IManager $encryptionManager,
) {
parent::__construct();
}