<?php
namespace App\Service\Forms\Integrations;
class SimpleWebhookHandler extends AbstractWebhookHandler
{
protected function getProviderName(): string
return 'webhook';
}
protected function getWebhookUrl(): ?string
return $this->form->webhook_url;
protected function shouldRun(): bool
return ! is_null($this->getWebhookUrl()) && $this->form->is_pro;