diff --git a/core/Command/Log/File.php b/core/Command/Log/File.php index 4e3dc97a54649..978115d5aebdb 100644 --- a/core/Command/Log/File.php +++ b/core/Command/Log/File.php @@ -36,7 +36,9 @@ 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 500bc1e8a524d..7c25fdf8a6b21 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(); } diff --git a/core/Command/Security/ImportCertificate.php b/core/Command/Security/ImportCertificate.php index f3a44face48d2..a7e9bd94e4a43 100644 --- a/core/Command/Security/ImportCertificate.php +++ b/core/Command/Security/ImportCertificate.php @@ -30,7 +30,9 @@ use Symfony\Component\Console\Output\OutputInterface; class ImportCertificate extends Base { - public function __construct(protected ICertificateManager $certificateManager) { + public function __construct( + protected ICertificateManager $certificateManager, + ) { parent::__construct(); } diff --git a/core/Command/Security/RemoveCertificate.php b/core/Command/Security/RemoveCertificate.php index 51ddfc9811181..7dcd2d02604ae 100644 --- a/core/Command/Security/RemoveCertificate.php +++ b/core/Command/Security/RemoveCertificate.php @@ -30,7 +30,9 @@ use Symfony\Component\Console\Output\OutputInterface; class RemoveCertificate extends Base { - public function __construct(protected ICertificateManager $certificateManager) { + public function __construct( + protected ICertificateManager $certificateManager, + ) { parent::__construct(); } diff --git a/core/Command/Security/ResetBruteforceAttempts.php b/core/Command/Security/ResetBruteforceAttempts.php index a203d1daa1073..c0bc265c8f519 100644 --- a/core/Command/Security/ResetBruteforceAttempts.php +++ b/core/Command/Security/ResetBruteforceAttempts.php @@ -30,7 +30,9 @@ use Symfony\Component\Console\Output\OutputInterface; class ResetBruteforceAttempts extends Base { - public function __construct(protected Throttler $throttler) { + public function __construct( + protected Throttler $throttler, + ) { parent::__construct(); } diff --git a/core/Command/SystemTag/Add.php b/core/Command/SystemTag/Add.php index 7df8d5e03ebbe..067cd00118a95 100644 --- a/core/Command/SystemTag/Add.php +++ b/core/Command/SystemTag/Add.php @@ -31,7 +31,9 @@ use Symfony\Component\Console\Output\OutputInterface; class Add extends Base { - public function __construct(protected ISystemTagManager $systemTagManager) { + public function __construct( + protected ISystemTagManager $systemTagManager, + ) { parent::__construct(); } diff --git a/core/Command/SystemTag/Delete.php b/core/Command/SystemTag/Delete.php index a23b09d4e56ef..ed893ae037ca1 100644 --- a/core/Command/SystemTag/Delete.php +++ b/core/Command/SystemTag/Delete.php @@ -30,7 +30,9 @@ use Symfony\Component\Console\Output\OutputInterface; class Delete extends Base { - public function __construct(protected ISystemTagManager $systemTagManager) { + public function __construct( + protected ISystemTagManager $systemTagManager, + ) { parent::__construct(); } diff --git a/core/Command/SystemTag/Edit.php b/core/Command/SystemTag/Edit.php index d3c68a2b76e60..111dc500e7992 100644 --- a/core/Command/SystemTag/Edit.php +++ b/core/Command/SystemTag/Edit.php @@ -31,7 +31,9 @@ use Symfony\Component\Console\Output\OutputInterface; class Edit extends Base { - public function __construct(protected ISystemTagManager $systemTagManager) { + public function __construct( + protected ISystemTagManager $systemTagManager, + ) { parent::__construct(); } diff --git a/core/Command/SystemTag/ListCommand.php b/core/Command/SystemTag/ListCommand.php index c968fb14ef2e0..c0f4eba241c70 100644 --- a/core/Command/SystemTag/ListCommand.php +++ b/core/Command/SystemTag/ListCommand.php @@ -30,7 +30,9 @@ use Symfony\Component\Console\Output\OutputInterface; class ListCommand extends Base { - public function __construct(protected ISystemTagManager $systemTagManager) { + public function __construct( + protected ISystemTagManager $systemTagManager, + ) { parent::__construct(); }