diff options
author | Faraz Samapoor <fsa@adlas.at> | 2023-06-13 11:29:52 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-20 16:24:46 +0200 |
commit | bcfbcbb91cd30209d6e7e1278c08fb678f483809 (patch) | |
tree | 63d4465fc7bc66a1cdcd33f3ac50a9ea69798b95 /core/Command/Encryption/ShowKeyStorageRoot.php | |
parent | 2ace19fc54adff8c86cea8fb039dd9a6883c068d (diff) | |
download | nextcloud-server-bcfbcbb91cd30209d6e7e1278c08fb678f483809.tar.gz nextcloud-server-bcfbcbb91cd30209d6e7e1278c08fb678f483809.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/Encryption/ShowKeyStorageRoot.php')
-rw-r--r-- | core/Command/Encryption/ShowKeyStorageRoot.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Command/Encryption/ShowKeyStorageRoot.php b/core/Command/Encryption/ShowKeyStorageRoot.php index 33addebc1be..71b396540fd 100644 --- a/core/Command/Encryption/ShowKeyStorageRoot.php +++ b/core/Command/Encryption/ShowKeyStorageRoot.php @@ -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(); } |