Completed
Branch develop (97c2d3)
by
unknown
25:31
created
egulias/email-validator/EmailValidator/Exception/InvalidEmail.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 abstract class InvalidEmail extends \InvalidArgumentException
6 6
 {
7
-    const REASON = "Invalid email";
8
-    const CODE = 0;
7
+	const REASON = "Invalid email";
8
+	const CODE = 0;
9 9
 
10
-    public function __construct()
11
-    {
12
-        parent::__construct(static::REASON, static::CODE);
13
-    }
10
+	public function __construct()
11
+	{
12
+		parent::__construct(static::REASON, static::CODE);
13
+	}
14 14
 }
Please login to merge, or discard this patch.
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.