Skip to content

Commit

Permalink
Merge pull request #1 from szepeviktor/patch-1
Browse files Browse the repository at this point in the history
fix docblock in ZadarmaWebhookController
  • Loading branch information
webard authored Mar 29, 2024
2 parents a2a1645 + 8b1bd3a commit 6224774
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Http/Controllers/ZadarmaWebhookController.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ public function __construct(private ZadarmaService $zadarmaService)
$this->log = Log::channel(config('nova-zadarma.webhook_log_channel'));
}

/*
* https://zadarma.com/pl/support/api/#other_methods
*/
/**
* @link https://zadarma.com/pl/support/api/#other_methods
*/
public function eventWebhook(Request $request): Response
{
$this->log->debug('eventWebhook input', $request->all());

return response('not implemented');
}

/*
* https://zadarma.com/pl/support/api/#api_webhooks
*/
/**
* @link https://zadarma.com/pl/support/api/#api_webhooks
*/
public function pbxCallWebhook(Request $request): Response
{
// for some reason, caller_id or called_did sometimes does not have "+" at the beginning
Expand Down

0 comments on commit 6224774

Please sign in to comment.