add missing mailingList method

This commit is contained in:
Kevin Pohl 2019-05-16 18:03:13 +02:00 committed by David Garcia
parent f30985c925
commit 4d77573ae6

View File

@ -133,4 +133,9 @@ class Mailgun
{
return new Api\EmailValidation($this->httpClient, $this->requestBuilder, $this->hydrator);
}
public function mailingList(): Api\MailingList
{
return new Api\MailingList($this->httpClient, $this->requestBuilder, $this->hydrator);
}
}