Added Mailgun::ips()

This commit is contained in:
Nyholm 2019-01-06 09:45:43 +01:00 committed by David Garcia
parent da5ccde2a7
commit 4a3024f211

View File

@ -389,4 +389,12 @@ class Mailgun
{ {
return new Api\Suppression($this->httpClient, $this->requestBuilder, $this->hydrator); return new Api\Suppression($this->httpClient, $this->requestBuilder, $this->hydrator);
} }
/**
* @return Api\Ip
*/
public function ips()
{
return new Api\Ip($this->httpClient, $this->requestBuilder, $this->hydrator);
}
} }