File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/egulias/email-validator/src/Result/Reason
Upload
[..]
CRNoLF.php (250 B)
Edit
Rename
Del
CharNotAllowed.php (258 B)
Edit
Rename
Del
NoDNSRecord.php (281 B)
Edit
Rename
Del
RFCWarnings.php (267 B)
Edit
Rename
Del
UnusualElements.php (503 B)
Edit
Rename
Del
Edit: UnusualElements.php
<?php namespace Egulias\EmailValidator\Result\Reason; class UnusualElements implements Reason { /** * @var string $element */ private $element; public function __construct(string $element) { $this->element = $element; } public function code() : int { return 201; } public function description() : string { return 'Unusual element found, wourld render invalid in majority of cases. Element found: ' . $this->element; } }
Simpan