diff options
author | Faraz Samapoor <fsa@adlas.at> | 2023-06-13 16:06:16 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-19 17:44:48 +0200 |
commit | f63c52a396ccee0ffe52f975e6fb41b0da0520f3 (patch) | |
tree | 4359944113d8b4b1fbe9bf1008726963c8da6587 /core/Command/Log | |
parent | d83944fd101ca46f53cdb11520ae3b011f62b2b8 (diff) | |
download | nextcloud-server-f63c52a396ccee0ffe52f975e6fb41b0da0520f3.tar.gz nextcloud-server-f63c52a396ccee0ffe52f975e6fb41b0da0520f3.zip |
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>
Diffstat (limited to 'core/Command/Log')
-rw-r--r-- | core/Command/Log/File.php | 4 | ||||
-rw-r--r-- | core/Command/Log/Manage.php | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/core/Command/Log/File.php b/core/Command/Log/File.php index 4e3dc97a546..978115d5aeb 100644 --- a/core/Command/Log/File.php +++ b/core/Command/Log/File.php @@ -36,7 +36,9 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; class File extends Command implements Completion\CompletionAwareInterface { - public function __construct(protected IConfig $config) { + public function __construct( + protected IConfig $config, + ) { parent::__construct(); } diff --git a/core/Command/Log/Manage.php b/core/Command/Log/Manage.php index 500bc1e8a52..7c25fdf8a6b 100644 --- a/core/Command/Log/Manage.php +++ b/core/Command/Log/Manage.php @@ -39,7 +39,9 @@ class Manage extends Command implements CompletionAwareInterface { public const DEFAULT_LOG_LEVEL = 2; public const DEFAULT_TIMEZONE = 'UTC'; - public function __construct(protected IConfig $config) { + public function __construct( + protected IConfig $config, + ) { parent::__construct(); } |