Files
expense/vendor/egulias/email-validator/src/Result/Reason/Reason.php
T

17 lines
283 B
PHP
Raw Normal View History

2024-11-27 11:16:45 +07:00
<?php
namespace Egulias\EmailValidator\Result\Reason;
interface Reason
{
/**
* Code for user land to act upon;
*/
public function code() : int;
/**
* Short description of the result, human readable.
*/
public function description() : string;
}