]> source.dussan.org Git - nextcloud-server.git/commitdiff
Moves single constructor parameters to new lines.
authorFaraz Samapoor <fsa@adlas.at>
Tue, 13 Jun 2023 07:59:52 +0000 (11:29 +0330)
committerLouis <6653109+artonge@users.noreply.github.com>
Tue, 20 Jun 2023 14:24:46 +0000 (16:24 +0200)
Based on:
https://github.com/nextcloud/server/pull/38764#discussion_r1227630895

Signed-off-by: Faraz Samapoor <fsa@adlas.at>
core/Command/Encryption/Disable.php
core/Command/Encryption/ShowKeyStorageRoot.php
core/Command/Encryption/Status.php

index e188e6be3442e4fec8dcf5e132337632ce5bc407..4c6e3431f938ae82dfff04d0c387eff184d98fc9 100644 (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();
        }
 
index 33addebc1be2734fe07e14a02577ea1f3de89648..71b396540fdfc7b624f287748ee8f5d96f72027d 100644 (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();
        }
 
index 232e897299a7ce6a9b58f646a5902bf1b0f806ad..691b399203d781dd3e34ccf645fcf8c55166a85e 100644 (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();
        }