diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Check.php | 4 |
1 files changed, 3 insertions, 1 deletions
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(); } |