diff --git a/core/Command/Encryption/Disable.php b/core/Command/Encryption/Disable.php index e188e6be3442e..4c6e3431f938a 100644 --- a/core/Command/Encryption/Disable.php +++ b/core/Command/Encryption/Disable.php @@ -27,7 +27,9 @@ use Symfony\Component\Console\Output\OutputInterface; class Disable extends Command { - public function __construct(protected IConfig $config) { + public function __construct( + protected IConfig $config, + ) { parent::__construct(); } diff --git a/core/Command/Encryption/ShowKeyStorageRoot.php b/core/Command/Encryption/ShowKeyStorageRoot.php index 33addebc1be27..71b396540fdfc 100644 --- a/core/Command/Encryption/ShowKeyStorageRoot.php +++ b/core/Command/Encryption/ShowKeyStorageRoot.php @@ -29,7 +29,9 @@ use Symfony\Component\Console\Output\OutputInterface; class ShowKeyStorageRoot extends Command { - public function __construct(protected Util $util) { + public function __construct( + protected Util $util, + ) { parent::__construct(); } diff --git a/core/Command/Encryption/Status.php b/core/Command/Encryption/Status.php index 232e897299a7c..691b399203d78 100644 --- a/core/Command/Encryption/Status.php +++ b/core/Command/Encryption/Status.php @@ -27,7 +27,9 @@ use Symfony\Component\Console\Output\OutputInterface; class Status extends Base { - public function __construct(protected IManager $encryptionManager) { + public function __construct( + protected IManager $encryptionManager, + ) { parent::__construct(); }