Files
expense/vendor/egulias/email-validator/src/Warning/CFWSWithFWS.php
T
fiqhpratama 453d9bb470 new commit
2024-11-27 11:17:17 +07:00

14 lines
244 B
PHP

<?php
namespace Egulias\EmailValidator\Warning;
class CFWSWithFWS extends Warning
{
public const CODE = 18;
public function __construct()
{
$this->message = 'Folding whites space followed by folding white space';
}
}