diff --git a/Messenger/RunCommandContext.php b/Messenger/RunCommandContext.php index 35d5cbeba..2ee5415c6 100644 --- a/Messenger/RunCommandContext.php +++ b/Messenger/RunCommandContext.php @@ -14,10 +14,12 @@ /** * @author Kevin Bond */ -final class RunCommandContext extends RunCommandMessage +final class RunCommandContext { - public function __construct(RunCommandMessage $message, public readonly int $exitCode, public readonly string $output) - { - parent::__construct($message->input, $message->throwOnFailure, $message->catchExceptions); + public function __construct( + public readonly RunCommandMessage $message, + public readonly int $exitCode, + public readonly string $output, + ) { } }