We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1034433 commit 05a1889Copy full SHA for 05a1889
src/Actions/WebhookAction.php
@@ -5,6 +5,7 @@
5
use CSlant\GitHubProject\Services\WebhookService;
6
use Illuminate\Http\JsonResponse;
7
use Symfony\Component\HttpFoundation\Request;
8
+use Throwable;
9
10
class WebhookAction
11
{
@@ -15,6 +16,9 @@ public function __construct(WebhookService $webhookService)
15
16
$this->webhookService = $webhookService;
17
}
18
19
+ /**
20
+ * @throws Throwable
21
+ */
22
public function __invoke(): JsonResponse
23
24
$request = Request::createFromGlobals();
0 commit comments