<?php namespace Egulias\EmailValidator\Result; interface Result { /** * Is validation result valid? */ public function isValid() : bool; /** * Is validation result invalid? * Usually the inverse of isValid() */ public function isInvalid() : bool; /** * Short description of the result, human readable. */ public function description() : string; /** * Code for user land to act upon. */ public function code() : int; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Reason | Folder | 0755 |
|
|
InvalidEmail.php | File | 843 B | 0644 |
|
MultipleErrors.php | File | 1.04 KB | 0644 |
|
Result.php | File | 500 B | 0644 |
|
SpoofEmail.php | File | 306 B | 0644 |
|
ValidEmail.php | File | 379 B | 0644 |
|