public function getResponse() : Response { return new class ($this->command->exitCode) extends Response { public function __construct(int $exitCode) { parent::__construct(); } public function getStatusCode() : int { return $this->exitCode; } }; }