dolibarr/htdocs/includes/egulias/email-validator/EmailValidator/Warning/QuotedPart.php
Frédéric FRANCE a34b99f3ec
swiftmailer
2018-01-21 15:55:56 +01:00

14 lines
270 B
PHP

<?php
namespace Egulias\EmailValidator\Warning;
class QuotedPart extends Warning
{
const CODE = 36;
public function __construct($prevToken, $postToken)
{
$this->message = "Deprecated Quoted String found between $prevToken and $postToken";
}
}