From dd40798c43d0c4d725eba7db9f10d42b5d5676f4 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Wed, 19 Apr 2023 17:49:31 -0700 Subject: [PATCH] Remove unneeded comments --- app/Listeners/CheckoutableListener.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Listeners/CheckoutableListener.php b/app/Listeners/CheckoutableListener.php index 38e5819b80..09cb3ae8f2 100644 --- a/app/Listeners/CheckoutableListener.php +++ b/app/Listeners/CheckoutableListener.php @@ -44,7 +44,6 @@ class CheckoutableListener $acceptance = $this->getCheckoutAcceptance($event); try { - // Send an anonymous webhook notification if setting enabled if ($this->shouldSendWebhookNotification()) { Notification::route('slack', Setting::getSettings()->webhook_endpoint) ->notify($this->getCheckoutNotification($event)); @@ -91,7 +90,6 @@ class CheckoutableListener } try { - // Send an anonymous webhook notification if setting enabled if ($this->shouldSendWebhookNotification()) { Notification::route('slack', Setting::getSettings()->webhook_endpoint) ->notify($this->getCheckinNotification($event));