Phpstan fixes

This commit is contained in:
Pawel Wasiluk 2021-08-19 14:10:07 +02:00 committed by David Garcia
parent 2bec29071e
commit 8d8f6510d2
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ use Mailgun\Model\Mailboxes\UpdateResponse;
class Mailboxes extends HttpApi
{
const MIN_PASSWORD_LENGTH = 5;
/**
* @param string $domain
* @param array $parameters
@ -81,7 +81,7 @@ class Mailboxes extends HttpApi
}
/**
* @param string $address
* @param string $domain
* @param string $mailbox
*
* @return DeleteResponse

View File

@ -146,6 +146,6 @@ class Mailgun
public function mailboxes(): Api\Mailboxes
{
return new Api\Mailboxes($this->httpClient, $this->requestBuilder, $this->hydrator, $this->apiKey);
return new Api\Mailboxes($this->httpClient, $this->requestBuilder, $this->hydrator);
}
}