daveearley/Email-Validation-Tool

View on GitHub
src/Validations/ValidatorInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace EmailValidation\Validations;

interface ValidatorInterface
{
    public function getResultResponse();

    public function getValidatorName(): string;
}