Passed
Push — master ( b564bb...017a53 )
by John
04:56
created
src/EmailValidator/Policy.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -53,16 +53,16 @@
 block discarded – undo
53 53
 
54 54
     public function __construct(array $config = [])
55 55
     {
56
-        $this->checkMxRecords         = (bool) ($config['checkMxRecords']         ?? true);
56
+        $this->checkMxRecords         = (bool) ($config['checkMxRecords'] ?? true);
57 57
         $this->checkBannedListedEmail = (bool) ($config['checkBannedListedEmail'] ?? false);
58
-        $this->checkDisposableEmail   = (bool) ($config['checkDisposableEmail']   ?? false);
59
-        $this->checkFreeEmail         = (bool) ($config['checkFreeEmail']         ?? false);
60
-        $this->localDisposableOnly    = (bool) ($config['LocalDisposableOnly']    ?? false);
61
-        $this->localFreeOnly          = (bool) ($config['LocalFreeOnly']          ?? false);
58
+        $this->checkDisposableEmail   = (bool) ($config['checkDisposableEmail'] ?? false);
59
+        $this->checkFreeEmail         = (bool) ($config['checkFreeEmail'] ?? false);
60
+        $this->localDisposableOnly    = (bool) ($config['LocalDisposableOnly'] ?? false);
61
+        $this->localFreeOnly          = (bool) ($config['LocalFreeOnly'] ?? false);
62 62
 
63
-        $this->bannedList             = $config['bannedList']     ?? [];
63
+        $this->bannedList             = $config['bannedList'] ?? [];
64 64
         $this->disposableList         = $config['disposableList'] ?? [];
65
-        $this->freeList               = $config['freeList']       ?? [];
65
+        $this->freeList               = $config['freeList'] ?? [];
66 66
     }
67 67
 
68 68
     /**
Please login to merge, or discard this patch.