From cb8850dc8fdf57ad1d87ee4b8142060c7c340944 Mon Sep 17 00:00:00 2001 From: Faraz Samapoor Date: Tue, 20 Jun 2023 19:00:21 +0330 Subject: [PATCH] Update core/Command/Check.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Faraz Samapoor --- core/Command/Check.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/Command/Check.php b/core/Command/Check.php index 529cb541f6d..478486b7dee 100644 --- a/core/Command/Check.php +++ b/core/Command/Check.php @@ -29,7 +29,9 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class Check extends Base { - public function __construct(private SystemConfig $config) { + public function __construct( + private SystemConfig $config, + ) { parent::__construct(); }