aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/Encryption/ShowKeyStorageRoot.php
diff options
context:
space:
mode:
authorFaraz Samapoor <fsa@adlas.at>2023-06-13 11:29:52 +0330
committerLouis <6653109+artonge@users.noreply.github.com>2023-06-20 16:24:46 +0200
commitbcfbcbb91cd30209d6e7e1278c08fb678f483809 (patch)
tree63d4465fc7bc66a1cdcd33f3ac50a9ea69798b95 /core/Command/Encryption/ShowKeyStorageRoot.php
parent2ace19fc54adff8c86cea8fb039dd9a6883c068d (diff)
downloadnextcloud-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.php4
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();
}