sender = $sender; } /** * @throws Error */ public function run(Data $data): void { $uniqueId = $data->get('id'); if (!$uniqueId) { throw new RuntimeException(); } $this->sender->send($uniqueId); } }