From b35dee56de5adbca03c31f91fed209f0552562f1 Mon Sep 17 00:00:00 2001 From: Tac Tacelosky Date: Tue, 25 Jun 2024 19:00:01 -0600 Subject: [PATCH] add :void for consistency with BaseLintCommand Fixes #57527, I think. Alternatively, we can remove the void return type in BaseLintCommand. I'm using php 8.3 --- Command/YamlLintCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/YamlLintCommand.php b/Command/YamlLintCommand.php index 3a432f275..94c93be98 100644 --- a/Command/YamlLintCommand.php +++ b/Command/YamlLintCommand.php @@ -46,7 +46,7 @@ public function __construct() /** * {@inheritdoc} */ - protected function configure() + protected function configure(): void { parent::configure();