Files
EmailValidator/src/Warning/QuotedPart.php
T
2022-12-15 00:04:10 +01:00

18 lines
367 B
PHP

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