diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-12-08 15:31:45 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-12-08 15:31:45 +0000 |
| commit | af315f18d0160e88d882c1c8d912be100da3015e (patch) | |
| tree | 018d3df321651d274e8874dde7b5c1c2f606ddad /vendor/egulias | |
| parent | 2d4c1bed21c79cb68ed67f0b67a01fcd61489dc5 (diff) | |
| download | webtrees-af315f18d0160e88d882c1c8d912be100da3015e.tar.gz webtrees-af315f18d0160e88d882c1c8d912be100da3015e.tar.bz2 webtrees-af315f18d0160e88d882c1c8d912be100da3015e.zip | |
Update dependencies
Diffstat (limited to 'vendor/egulias')
| -rw-r--r-- | vendor/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php | 3 | ||||
| -rw-r--r-- | vendor/egulias/email-validator/README.md | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/vendor/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php b/vendor/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php index 43fa42a64b..ce161ac848 100644 --- a/vendor/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php +++ b/vendor/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php @@ -62,7 +62,8 @@ class MultipleValidationWithAnd implements EmailValidation $errors = []; foreach ($this->validations as $validation) { $emailLexer->reset(); - $result = $result && $validation->isValid($email, $emailLexer); + $validationResult = $validation->isValid($email, $emailLexer); + $result = $result && $validationResult; $this->warnings = array_merge($this->warnings, $validation->getWarnings()); $errors = $this->addNewError($validation->getError(), $errors); diff --git a/vendor/egulias/email-validator/README.md b/vendor/egulias/email-validator/README.md index 8fcd2a6fea..008669c8b9 100644 --- a/vendor/egulias/email-validator/README.md +++ b/vendor/egulias/email-validator/README.md @@ -1,12 +1,15 @@ # EmailValidator [](https://travis-ci.org/egulias/EmailValidator) [](https://coveralls.io/r/egulias/EmailValidator?branch=master) [](https://scrutinizer-ci.com/g/egulias/EmailValidator/?branch=master) [](https://insight.sensiolabs.com/projects/22ba6692-9c02-42e5-a65d-1c5696bfffc6) ============================= -With the help of [PHPStorm](https://www.jetbrains.com/phpstorm/) +## Suported RFCs ## +This library aims to support: + +RFC 5321, 5322, 6530, 6531, 6532. ## Requirements ## * [Composer](https://getcomposer.org) is required for installation - * [Spoofchecking](https://github.com/egulias/EmailValidator/blob/master/EmailValidator/Validation/SpoofCheckValidation.php) and [DNSCheckValidation](https://github.com/egulias/EmailValidator/blob/master/EmailValidator/Validation/DNSCheckValidation.php) validation requires that your PHP system have the [PHP Internationalization Libraries](https://php.net/manual/en/book.intl.php) (also known as PHP Intl) + * [Spoofchecking](https://github.com/egulias/EmailValidator/blob/master/EmailValidator/Validation/SpoofCheckValidation.php) and [DNSCheckValidation](https://github.com/egulias/EmailValidator/blob/master/EmailValidator/Validation/DNSCheckValidation.php) validation requires that your PHP system has the [PHP Internationalization Libraries](https://php.net/manual/en/book.intl.php) (also known as PHP Intl) ## Installation ## |
