first commit
This commit is contained in:
13
vendor/egulias/email-validator/src/Result/Reason/DetailedReason.php
vendored
Normal file
13
vendor/egulias/email-validator/src/Result/Reason/DetailedReason.php
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Egulias\EmailValidator\Result\Reason;
|
||||
|
||||
abstract class DetailedReason implements Reason
|
||||
{
|
||||
protected $detailedDescription;
|
||||
|
||||
public function __construct(string $details)
|
||||
{
|
||||
$this->detailedDescription = $details;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user