Completed
Branch develop (aa6d31)
by
unknown
24:05
created
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.
egulias/email-validator/EmailValidator/Exception/UnclosedComment.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 UnclosedComment extends InvalidEmail
6 6
 {
7
-    const CODE = 146;
8
-    const REASON = "No closing comment token found";
7
+	const CODE = 146;
8
+	const REASON = "No closing comment token found";
9 9
 }
Please login to merge, or discard this patch.
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.