Completed
Branch develop (97c2d3)
by
unknown
25:31
created
egulias/email-validator/EmailValidator/Exception/CRLFAtTheEnd.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class CRLFAtTheEnd extends InvalidEmail
6 6
 {
7
-    const CODE = 149;
8
-    const REASON = "CRLF at the end";
7
+	const CODE = 149;
8
+	const REASON = "CRLF at the end";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/NoDNSRecord.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class NoDNSRecord extends InvalidEmail
6 6
 {
7
-    const CODE = 5;
8
-    const REASON = 'No MX or A DSN record was found for this email';
7
+	const CODE = 5;
8
+	const REASON = 'No MX or A DSN record was found for this email';
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/NoLocalPart.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class NoLocalPart extends InvalidEmail
6 6
 {
7
-    const CODE = 130;
8
-    const REASON = "No local part";
7
+	const CODE = 130;
8
+	const REASON = "No local part";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/ConsecutiveAt.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class ConsecutiveAt extends InvalidEmail
6 6
 {
7
-    const CODE = 128;
8
-    const REASON = "Consecutive AT";
7
+	const CODE = 128;
8
+	const REASON = "Consecutive AT";
9 9
 }
Please login to merge, or discard this patch.
swiftmailer/egulias/email-validator/EmailValidator/Exception/CRLFX2.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class CRLFX2 extends InvalidEmail
6 6
 {
7
-    const CODE = 148;
8
-    const REASON = "Folding whitespace CR LF found twice";
7
+	const CODE = 148;
8
+	const REASON = "Folding whitespace CR LF found twice";
9 9
 }
Please login to merge, or discard this patch.
email-validator/EmailValidator/Exception/ExpectingDomainLiteralClose.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class ExpectingDomainLiteralClose extends InvalidEmail
6 6
 {
7
-    const CODE = 137;
8
-    const REASON = "Closing bracket ']' for domain literal not found";
7
+	const CODE = 137;
8
+	const REASON = "Closing bracket ']' for domain literal not found";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/DomainAcceptsNoMail.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class DomainAcceptsNoMail extends InvalidEmail
6 6
 {
7
-    const CODE = 154;
8
-    const REASON = 'Domain accepts no mail (Null MX, RFC7505)';
7
+	const CODE = 154;
8
+	const REASON = 'Domain accepts no mail (Null MX, RFC7505)';
9 9
 }
10 10
\ No newline at end of file
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/UnopenedComment.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class UnopenedComment extends InvalidEmail
6 6
 {
7
-    const CODE = 152;
8
-    const REASON = "No opening comment token found";
7
+	const CODE = 152;
8
+	const REASON = "No opening comment token found";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/LocalOrReservedDomain.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class LocalOrReservedDomain extends InvalidEmail
6 6
 {
7
-    const CODE = 153;
8
-    const REASON = 'Local, mDNS or reserved domain (RFC2606, RFC6762)';
7
+	const CODE = 153;
8
+	const REASON = 'Local, mDNS or reserved domain (RFC2606, RFC6762)';
9 9
 }
10 10
\ No newline at end of file
Please login to merge, or discard this patch.