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

Signed-off-by: Faraz Samapoor <fsa@adlas.at>
core/Command/Info/Space.php
core/Command/Integrity/CheckApp.php
core/Command/Integrity/CheckCore.php

index b552cf8b9797b7671be0ba9e7ea967b61f9b6649..dfbfcf848c1d3dee5f7d841eebb95783c0cc54ac 100644 (file)
@@ -32,7 +32,9 @@ use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class Space extends Command {
-       public function __construct(private FileUtils $fileUtils) {
+       public function __construct(
+               private FileUtils $fileUtils,
+       ) {
                parent::__construct();
        }
 
index e095c6d9c3105007aea878273b4b416589d4d8cc..fe999fed9fdc7f9256f6fa2cf02cff8555b86afe 100644 (file)
@@ -40,7 +40,9 @@ use Symfony\Component\Console\Output\OutputInterface;
  * @package OC\Core\Command\Integrity
  */
 class CheckApp extends Base {
-       public function __construct(private Checker $checker) {
+       public function __construct(
+               private Checker $checker,
+       ) {
                parent::__construct();
        }
 
index c962b80fa3c2b15c3233ae46acbbda5e4481e438..0bcb75fa6be5081b2dd6f297d8c451398616faa1 100644 (file)
@@ -36,7 +36,9 @@ use Symfony\Component\Console\Output\OutputInterface;
  * @package OC\Core\Command\Integrity
  */
 class CheckCore extends Base {
-       public function __construct(private Checker $checker) {
+       public function __construct(
+               private Checker $checker,
+       ) {
                parent::__construct();
        }