annotate vendor/egulias/email-validator/EmailValidator/Warning/IPV6Deprecated.php @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents af1871eacc83
children
rev   line source
Chris@18 1 <?php
Chris@18 2
Chris@18 3 namespace Egulias\EmailValidator\Warning;
Chris@18 4
Chris@18 5 class IPV6Deprecated extends Warning
Chris@18 6 {
Chris@18 7 const CODE = 13;
Chris@18 8
Chris@18 9 public function __construct()
Chris@18 10 {
Chris@18 11 $this->message = 'Deprecated form of IPV6';
Chris@18 12 $this->rfcNumber = 5321;
Chris@18 13 }
Chris@18 14 }