관리-도구
편집 파일: CRNoLF.php
<?php namespace Egulias\EmailValidator\Result\Reason; class CRNoLF implements Reason { public function code() : int { return 150; } public function description() : string { return 'Missing LF after CR'; } }