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

Signed-off-by: Faraz Samapoor <fsa@adlas.at>
12 files changed:
core/Command/Config/App/DeleteConfig.php
core/Command/Config/App/GetConfig.php
core/Command/Config/App/SetConfig.php
core/Command/Config/Import.php
core/Command/Config/System/Base.php
core/Command/Config/System/DeleteConfig.php
core/Command/Config/System/GetConfig.php
core/Command/Config/System/SetConfig.php
core/Command/Group/Add.php
core/Command/Group/Delete.php
core/Command/Group/Info.php
core/Command/Group/ListCommand.php

index 577378559b363393f60ab9643c8613e1471b66e2..b77f27ccd0733bccef0cb83ec3aae7112b64676f 100644 (file)
@@ -28,7 +28,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class DeleteConfig extends Base {
-       public function __construct(protected IConfig $config) {
+       public function __construct(
+               protected IConfig $config,
+       ) {
                parent::__construct();
        }
 
index 3ed327fac79e57edefad72fd755cbbfbff3c9c38..96078b63e90629ae74fd68edb578bf992e3477c4 100644 (file)
@@ -28,7 +28,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class GetConfig extends Base {
-       public function __construct(protected IConfig $config) {
+       public function __construct(
+               protected IConfig $config,
+       ) {
                parent::__construct();
        }
 
index dcc3fd58bf78376036b749d58125323c7123e6d8..99746246b85acf3292e6707fd4e8cf5390d5bb6b 100644 (file)
@@ -28,7 +28,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class SetConfig extends Base {
-       public function __construct(protected IConfig $config) {
+       public function __construct(
+               protected IConfig $config,
+       ) {
                parent::__construct();
        }
 
index 90c92bff489cce49d00c341d14f8ade836e96b48..b8431c8c2957afb8366aa48a3b0c7321ce21acec 100644 (file)
@@ -36,7 +36,9 @@ use Symfony\Component\Console\Output\OutputInterface;
 class Import extends Command implements CompletionAwareInterface {
        protected array $validRootKeys = ['system', 'apps'];
 
-       public function __construct(protected IConfig $config) {
+       public function __construct(
+               protected IConfig $config,
+       ) {
                parent::__construct();
        }
 
index 0824af8d18c14173f70d6c44b7351c4f26e756ab..09ec456f6a44eeb82c6f8355ef1e601d8b2bd41f 100644 (file)
@@ -26,7 +26,9 @@ use OC\SystemConfig;
 use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
 
 abstract class Base extends \OC\Core\Command\Base {
-       public function __construct(protected SystemConfig $systemConfig) {
+       public function __construct(
+               protected SystemConfig $systemConfig,
+       ) {
                parent::__construct();
        }
 
index f4d49ba8f516ab537f1bd95245a5e042a1db64a1..f6650e7d6d357124e1c7887790910b8ca9850658 100644 (file)
@@ -30,7 +30,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class DeleteConfig extends Base {
-       public function __construct(SystemConfig $systemConfig) {
+       public function __construct(
+               SystemConfig $systemConfig,
+       ) {
                parent::__construct($systemConfig);
        }
 
index 01bbf82d5d17614d4edc2ac81b3307fa39d64a44..ab5b884fda4de4c87a8d70f7e32be2db33e728ad 100644 (file)
@@ -29,7 +29,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class GetConfig extends Base {
-       public function __construct(SystemConfig $systemConfig) {
+       public function __construct(
+               SystemConfig $systemConfig,
+       ) {
                parent::__construct($systemConfig);
        }
 
index 01a1999bcf983d05109f255853efa828dc65758c..ba5265a84d7dd00b979aa1e8aaa47e062c47193c 100644 (file)
@@ -32,7 +32,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class SetConfig extends Base {
-       public function __construct(SystemConfig $systemConfig) {
+       public function __construct(
+               SystemConfig $systemConfig,
+       ) {
                parent::__construct($systemConfig);
        }
 
index d148e86a1b435cb3b10bb61b8018a08411464989..40502762e95d39c66656287291788ce859486bf1 100644 (file)
@@ -36,7 +36,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class Add extends Base {
-       public function __construct(protected IGroupManager $groupManager) {
+       public function __construct(
+               protected IGroupManager $groupManager,
+       ) {
                parent::__construct();
        }
 
index ad6c7ce7f2b53a7d7a3755a83e1bf1674d5af1fa..c7cbf0aa0f6cd0257562cff2ae4abb0613f52517 100644 (file)
@@ -35,7 +35,9 @@ use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class Delete extends Base {
-       public function __construct(protected IGroupManager $groupManager) {
+       public function __construct(
+               protected IGroupManager $groupManager,
+       ) {
                parent::__construct();
        }
 
index 6d09c2826b85c91ac7f6ce09d3a73b8a6ef8a9f0..1dab56e1a890737b8816fe8dd9bb84ccaeae68aa 100644 (file)
@@ -35,7 +35,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class Info extends Base {
-       public function __construct(protected IGroupManager $groupManager) {
+       public function __construct(
+               protected IGroupManager $groupManager,
+       ) {
                parent::__construct();
        }
 
index a2a63d46a18c4ebb934c5ff6da488559ab6fabea..22ce4cb0317e11c5be074a6d34ba9a95593ca06b 100644 (file)
@@ -32,7 +32,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class ListCommand extends Base {
-       public function __construct(protected IGroupManager $groupManager) {
+       public function __construct(
+               protected IGroupManager $groupManager,
+       ) {
                parent::__construct();
        }