Files
-S.I.S-QuaySo_v2/vendor/egulias/email-validator/src/Warning/CFWSWithFWS.php
T
2026-03-26 09:28:14 +07:00

14 lines
257 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';
}
}