From 74fb5a83115d8c893247dd2ca137d80747c55067 Mon Sep 17 00:00:00 2001 From: Deeka Wong Date: Tue, 5 Sep 2023 14:07:07 +0800 Subject: [PATCH] Fix the bug for `ConsumeCommand` (#330) Co-authored-by: Deeka Wong <8337659+huangdijia@users.noreply.github.com> --- src/Command/ConsumeCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Command/ConsumeCommand.php b/src/Command/ConsumeCommand.php index fbb8720..98d93ff 100644 --- a/src/Command/ConsumeCommand.php +++ b/src/Command/ConsumeCommand.php @@ -35,6 +35,7 @@ public function __construct( protected ContainerInterface $container, protected ConfigInterface $config ) { + parent::__construct(); } public function handle()