Eliminate an extra level of indentation
This commit is contained in:
@ -83,11 +83,9 @@ class MailChimp {
|
|||||||
}
|
}
|
||||||
if(!isset($header_hash)) {
|
if(!isset($header_hash)) {
|
||||||
$header_hash = md5(implode(',', $header));
|
$header_hash = md5(implode(',', $header));
|
||||||
} else {
|
} elseif(md5(implode(',', $header) !== $header_hash)) {
|
||||||
if(md5(implode(',', $header) !== $header_hash)) {
|
|
||||||
return $this->throwException('headers');
|
return $this->throwException('headers');
|
||||||
}
|
}
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
$subscribers[] = $obj;
|
$subscribers[] = $obj;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user