Debugging
Default tasks when hooks are not been dispatched
Xdebug breakpoints
Validate method, URI and options
public function requestAsync($method, $uri = '', array $options = [])
{
// Validate whether all variables meet the expectation.
$request = new Psr7\Request($method, $uri, $headers, $body, $version);
}Found event webhooks
public function execute(FrameworkObserver $observer): void
{
// Look into the result of getListByName.
$hooks = $this->webhookRepository->getListByName($observer->getWebhook()->getName());
}Last updated