From 5e00a273a39677a54769b52b2b6846b672f15d17 Mon Sep 17 00:00:00 2001 From: James Fenwick Date: Mon, 1 Jul 2019 16:43:17 +0100 Subject: [PATCH] Remove handle abstract method from ProcessWebhookJob Having an abstract `handle` method stops dependencies from being type hinted. By removing it users will have to implement the method by themselves but hopefully most users will be familiar with that. --- src/ProcessWebhookJob.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ProcessWebhookJob.php b/src/ProcessWebhookJob.php index 590dd1b..5d3b3df 100644 --- a/src/ProcessWebhookJob.php +++ b/src/ProcessWebhookJob.php @@ -20,6 +20,4 @@ public function __construct(WebhookCall $webhookCall) { $this->webhookCall = $webhookCall; } - - abstract public function handle(); }