File "QuotedString.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/egulias/email-validator/src/Warning/QuotedString.php
File size: 341 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Egulias\EmailValidator\Warning;
class QuotedString extends Warning
{
const CODE = 11;
/**
* @param scalar $prevToken
* @param scalar $postToken
*/
public function __construct($prevToken, $postToken)
{
$this->message = "Quoted String found between $prevToken and $postToken";
}
}