Completed
Branch develop (fa72bb)
by
unknown
26:08
created
swiftmailer/egulias/email-validator/EmailValidator/Exception/CRNoLF.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 CRNoLF extends InvalidEmail
6 6
 {
7
-    const CODE = 150;
8
-    const REASON = "Missing LF after CR";
7
+	const CODE = 150;
8
+	const REASON = "Missing LF after CR";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/CommaInDomain.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 CommaInDomain extends InvalidEmail
6 6
 {
7
-    const CODE = 200;
8
-    const REASON = "Comma ',' is not allowed in domain part";
7
+	const CODE = 200;
8
+	const REASON = "Comma ',' is not allowed in domain part";
9 9
 }
Please login to merge, or discard this patch.
swiftmailer/egulias/email-validator/EmailValidator/Exception/DotAtEnd.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 DotAtEnd extends InvalidEmail
6 6
 {
7
-    const CODE = 142;
8
-    const REASON = "Dot at the end";
7
+	const CODE = 142;
8
+	const REASON = "Dot at the end";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/ExpectingATEXT.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 ExpectingATEXT extends InvalidEmail
6 6
 {
7
-    const CODE = 137;
8
-    const REASON = "Expecting ATEXT";
7
+	const CODE = 137;
8
+	const REASON = "Expecting ATEXT";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/UnclosedQuotedString.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 UnclosedQuotedString extends InvalidEmail
6 6
 {
7
-    const CODE = 145;
8
-    const REASON = "Unclosed quoted string";
7
+	const CODE = 145;
8
+	const REASON = "Unclosed quoted string";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/ExpectingDTEXT.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 ExpectingDTEXT extends InvalidEmail
6 6
 {
7
-    const CODE = 129;
8
-    const REASON = "Expected DTEXT";
7
+	const CODE = 129;
8
+	const REASON = "Expected DTEXT";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/ExpectingAT.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 ExpectingAT extends InvalidEmail
6 6
 {
7
-    const CODE = 202;
8
-    const REASON = "Expecting AT '@' ";
7
+	const CODE = 202;
8
+	const REASON = "Expecting AT '@' ";
9 9
 }
Please login to merge, or discard this patch.
swiftmailer/egulias/email-validator/EmailValidator/Exception/DotAtStart.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 DotAtStart extends InvalidEmail
6 6
 {
7
-    const CODE = 141;
8
-    const REASON = "Found DOT at start";
7
+	const CODE = 141;
8
+	const REASON = "Found DOT at start";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/ConsecutiveDot.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 ConsecutiveDot extends InvalidEmail
6 6
 {
7
-    const CODE = 132;
8
-    const REASON = "Consecutive DOT";
7
+	const CODE = 132;
8
+	const REASON = "Consecutive DOT";
9 9
 }
Please login to merge, or discard this patch.