mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-04-04 05:33:34 +03:00
Dont break BC
This commit is contained in:
parent
1eab2cf3be
commit
9aed5e1234
1 changed files with 11 additions and 2 deletions
|
@ -33,8 +33,17 @@ final class ShowResponse implements ApiResponse
|
|||
return $model;
|
||||
}
|
||||
|
||||
public function getWebhookUrls(): ?array
|
||||
public function getWebhookUrl(): ?string
|
||||
{
|
||||
return $this->webhook['urls'] ?? null;
|
||||
foreach ($this->getWebhookUrls() as $url) {
|
||||
return $url;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public function getWebhookUrls(): array
|
||||
{
|
||||
return $this->webhook['urls'] ?? [];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue