Downgrade PHPStan level to 4

[MAILPOET-1915]
This commit is contained in:
Pavel Dohnal
2019-03-20 16:45:49 +01:00
committed by M. Shull
parent f3f769316a
commit c5b5d8f45d
3 changed files with 3 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ class MailChimp {
}
if (!isset($header_hash)) {
$header_hash = md5(implode(',', $header));
} elseif (md5(implode(',', $header)) !== $header_hash) {
} elseif (md5(implode(',', $header) !== $header_hash)) {
return $this->throwException('headers');
}
} else {