class QuotedPart
Hierarchy
- class \Egulias\EmailValidator\Warning\Warning
- class \Egulias\EmailValidator\Warning\QuotedPart extends \Egulias\EmailValidator\Warning\Warning
Expanded class hierarchy of QuotedPart
1 file declares its use of QuotedPart
- Comment.php in vendor/
egulias/ email-validator/ src/ Parser/ Comment.php
File
-
vendor/
egulias/ email-validator/ src/ Warning/ QuotedPart.php, line 5
Namespace
Egulias\EmailValidator\WarningView source
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}";
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
QuotedPart::CODE | public | constant | Overrides Warning::CODE | ||
QuotedPart::__construct | public | function | |||
Warning::$message | protected | property | |||
Warning::$rfcNumber | protected | property | |||
Warning::code | public | function | 20 | ||
Warning::message | public | function | |||
Warning::RFCNumber | public | function | |||
Warning::__toString | public | function |