diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-20 19:00:21 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-24 23:14:23 +0200 |
commit | cb8850dc8fdf57ad1d87ee4b8142060c7c340944 (patch) | |
tree | 0b4dbc1ba839030a2c89c53dc45a7ee297e33600 /core/Command/Check.php | |
parent | 0db057262685c7a64c690de7a0e162dd52ccea55 (diff) | |
download | nextcloud-server-cb8850dc8fdf57ad1d87ee4b8142060c7c340944.tar.gz nextcloud-server-cb8850dc8fdf57ad1d87ee4b8142060c7c340944.zip |
Update core/Command/Check.php
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
Diffstat (limited to 'core/Command/Check.php')
-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(); } |