mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-06 08:19:25 +03:00
Update error messages and provide @author annotation
http://docs.phpdoc.org/references/phpdoc/tags/author.html
This commit is contained in:
parent
e94334b4f1
commit
682d7919ad
@ -21,6 +21,7 @@ use Mailgun\Exception\InvalidArgumentException;
|
|||||||
* We need to override Webmozart\Assert because we want to throw our own Exception.
|
* We need to override Webmozart\Assert because we want to throw our own Exception.
|
||||||
*
|
*
|
||||||
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||||||
|
* @author David Garcia <me@davidgarcia.cat>
|
||||||
*/
|
*/
|
||||||
final class Assert extends \Webmozart\Assert\Assert
|
final class Assert extends \Webmozart\Assert\Assert
|
||||||
{
|
{
|
||||||
@ -41,17 +42,17 @@ final class Assert extends \Webmozart\Assert\Assert
|
|||||||
|
|
||||||
if (!$validator->isValid($address, new RFCValidation())) {
|
if (!$validator->isValid($address, new RFCValidation())) {
|
||||||
static::reportInvalidArgument(sprintf(
|
static::reportInvalidArgument(sprintf(
|
||||||
'Email address `%s` has thrown an error when processing a RFC Validation',
|
'Email address `%s` has thrown an error when processing a RFC Validation.',
|
||||||
$address
|
$address
|
||||||
));
|
));
|
||||||
} elseif (!$validator->isValid($address, new DNSCheckValidation())) {
|
} elseif (!$validator->isValid($address, new DNSCheckValidation())) {
|
||||||
static::reportInvalidArgument(sprintf(
|
static::reportInvalidArgument(sprintf(
|
||||||
'Email address `%s` has thrown an error when processing a DNS Check Validation',
|
'Email address `%s` has thrown an error when processing a DNS Check Validation.',
|
||||||
$address
|
$address
|
||||||
));
|
));
|
||||||
} elseif (!$validator->isValid($address, new SpoofCheckValidation())) {
|
} elseif (!$validator->isValid($address, new SpoofCheckValidation())) {
|
||||||
static::reportInvalidArgument(sprintf(
|
static::reportInvalidArgument(sprintf(
|
||||||
'Email address `%s` has thrown an error when processing a Spoof Check Validation',
|
'Email address `%s` has thrown an error when processing a Spoof Check Validation.',
|
||||||
$address
|
$address
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user