From 38eba807767b22f373573fcb0684b0a71c72654b Mon Sep 17 00:00:00 2001 From: RobbeStatik Date: Mon, 17 Apr 2023 16:38:32 +0200 Subject: [PATCH] Added table header with survey name to webhook table --- src/Commands/SurveyheroWebhookListCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Commands/SurveyheroWebhookListCommand.php b/src/Commands/SurveyheroWebhookListCommand.php index 093fa9d..461d0ca 100644 --- a/src/Commands/SurveyheroWebhookListCommand.php +++ b/src/Commands/SurveyheroWebhookListCommand.php @@ -37,6 +37,7 @@ public function handle(): int $surveys = $surveyQuery->get(); foreach ($surveys as $survey) { + $this->comment("Webhooks for survey '$survey->name':"); /* @var SurveyContract $survey */ try { $webhooks = $this->webhookService->listWebhooks($survey);