-
Notifications
You must be signed in to change notification settings - Fork 43
Description
Deprecated: EmailValidation\Validations\Validator: :__construct(): Implicitly marking parameter $emailAddress as nullable is deprecated, the explicit nullable type must be used instead in vendor/daveearley/daves-email-validation-tool/src/Validations/Validator.php on line 16
Deprecated: EmailValidation\Validations\Validator: :__construct(): Implicitly marking parameter $emailDataProvider as nullable is deprecated, the explicit nullable type must be used instead in vendor/daveearley/daves-email-validation-tool/src/Validations/Validator.php on line 16
Deprecated: EmailValidation\Validations\MxRecordsValidator: :checkDns(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead in vendor/daveearley/daves-email-validation-tool/src/Validations/MxRecordsValidator.php on line 31
its need an update like this in class
in abstract class Validator
public function __construct(?EmailAddress $emailAddress = null, ?EmailDataProviderInterface $emailDataProvider = null)
{
$this->emailAddress = $emailAddress;
$this->emailDataProvider = $emailDataProvider;
}
please generate new version for php8.4