annotate vendor/egulias/email-validator/EmailValidator/Exception/UnclosedComment.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents
children
rev   line source
Chris@18 1 <?php
Chris@18 2
Chris@18 3 namespace Egulias\EmailValidator\Exception;
Chris@18 4
Chris@18 5 class UnclosedComment extends InvalidEmail
Chris@18 6 {
Chris@18 7 const CODE = 146;
Chris@18 8 const REASON = "No colosing comment token found";
Chris@18 9 }