@@ -53,16 +53,16 @@ |
||
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 | /** |