Add space between for and ‘(‘

[MAILPOET-1791]
This commit is contained in:
Ján Mikláš
2019-02-13 12:48:07 +01:00
committed by M. Shull
parent b2e5952896
commit fba2914392
20 changed files with 44 additions and 44 deletions

View File

@ -98,7 +98,7 @@ class MailPoet {
};
if(is_array($newsletter) && is_array($subscriber)) {
$body = array();
for($record = 0; $record < count($newsletter); $record++) {
for ($record = 0; $record < count($newsletter); $record++) {
$body[] = $composeBody(
$newsletter[$record],
$this->processSubscriber($subscriber[$record]),