aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/Security/ImportCertificate.php
diff options
context:
space:
mode:
authorFaraz Samapoor <fsa@adlas.at>2023-06-13 16:06:16 +0330
committerLouis <6653109+artonge@users.noreply.github.com>2023-06-19 17:44:48 +0200
commitf63c52a396ccee0ffe52f975e6fb41b0da0520f3 (patch)
tree4359944113d8b4b1fbe9bf1008726963c8da6587 /core/Command/Security/ImportCertificate.php
parentd83944fd101ca46f53cdb11520ae3b011f62b2b8 (diff)
downloadnextcloud-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/Security/ImportCertificate.php')
-rw-r--r--core/Command/Security/ImportCertificate.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Command/Security/ImportCertificate.php b/core/Command/Security/ImportCertificate.php
index f3a44face48..a7e9bd94e4a 100644
--- a/core/Command/Security/ImportCertificate.php
+++ b/core/Command/Security/ImportCertificate.php
@@ -30,7 +30,9 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ImportCertificate extends Base {
- public function __construct(protected ICertificateManager $certificateManager) {
+ public function __construct(
+ protected ICertificateManager $certificateManager,
+ ) {
parent::__construct();
}