@@ -74,7 +74,7 @@ |
||
| 74 | 74 | |
| 75 | 75 | if ($this->debug) { |
| 76 | 76 | $this->mailer->SMTPDebug = 2; |
| 77 | - $this->mailer->Debugoutput = function ($str, $level) { |
|
| 77 | + $this->mailer->Debugoutput = function($str, $level) { |
|
| 78 | 78 | logger($str, strtoupper($level)); |
| 79 | 79 | }; |
| 80 | 80 | } |
@@ -234,7 +234,7 @@ |
||
| 234 | 234 | */ |
| 235 | 235 | public function checkMandatory() |
| 236 | 236 | { |
| 237 | - $missing = array_filter(self::EXTENSIONS, function ($v, $k) { |
|
| 237 | + $missing = array_filter(self::EXTENSIONS, function($v, $k) { |
|
| 238 | 238 | return $v === true && !in_array($k, $this->available); |
| 239 | 239 | }, ARRAY_FILTER_USE_BOTH); |
| 240 | 240 | |