diff --git a/core/Command/Info/Space.php b/core/Command/Info/Space.php index b552cf8b9797b..dfbfcf848c1d3 100644 --- a/core/Command/Info/Space.php +++ b/core/Command/Info/Space.php @@ -32,7 +32,9 @@ use Symfony\Component\Console\Output\OutputInterface; class Space extends Command { - public function __construct(private FileUtils $fileUtils) { + public function __construct( + private FileUtils $fileUtils, + ) { parent::__construct(); } diff --git a/core/Command/Integrity/CheckApp.php b/core/Command/Integrity/CheckApp.php index e095c6d9c3105..fe999fed9fdc7 100644 --- a/core/Command/Integrity/CheckApp.php +++ b/core/Command/Integrity/CheckApp.php @@ -40,7 +40,9 @@ * @package OC\Core\Command\Integrity */ class CheckApp extends Base { - public function __construct(private Checker $checker) { + public function __construct( + private Checker $checker, + ) { parent::__construct(); } diff --git a/core/Command/Integrity/CheckCore.php b/core/Command/Integrity/CheckCore.php index c962b80fa3c2b..0bcb75fa6be50 100644 --- a/core/Command/Integrity/CheckCore.php +++ b/core/Command/Integrity/CheckCore.php @@ -36,7 +36,9 @@ * @package OC\Core\Command\Integrity */ class CheckCore extends Base { - public function __construct(private Checker $checker) { + public function __construct( + private Checker $checker, + ) { parent::__construct(); }