Completed
Branch develop (96e38e)
by
unknown
28:00
created
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.
egulias/email-validator/EmailValidator/Exception/AtextAfterCFWS.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 AtextAfterCFWS extends InvalidEmail
6 6
 {
7
-    const CODE = 133;
8
-    const REASON = "ATEXT found after CFWS";
7
+	const CODE = 133;
8
+	const REASON = "ATEXT found after CFWS";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/DomainHyphened.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 DomainHyphened extends InvalidEmail
6 6
 {
7
-    const CODE = 144;
8
-    const REASON = "Hyphen found in domain";
7
+	const CODE = 144;
8
+	const REASON = "Hyphen found in domain";
9 9
 }
Please login to merge, or discard this patch.
egulias/email-validator/EmailValidator/Exception/ExpectingCTEXT.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 ExpectingCTEXT extends InvalidEmail
6 6
 {
7
-    const CODE = 139;
8
-    const REASON = "Expecting CTEXT";
7
+	const CODE = 139;
8
+	const REASON = "Expecting CTEXT";
9 9
 }
Please login to merge, or discard this patch.