Fix spacing between control structure and opening parenthesis

This commit is contained in:
Tautvidas Sipavičius
2016-06-29 18:54:01 +03:00
parent 0bfbe6dc79
commit 48f0c03425
16 changed files with 35 additions and 35 deletions

View File

@ -84,7 +84,7 @@ class Scheduler {
return;
}
// schedule new queue if the post notification is not destined for immediate delivery
if ($newsletter->intervalType !== NewsletterScheduler::INTERVAL_IMMEDIATELY) {
if($newsletter->intervalType !== NewsletterScheduler::INTERVAL_IMMEDIATELY) {
$new_queue = SendingQueue::create();
$new_queue->newsletter_id = $newsletter->id;
$new_queue->status = NewsletterScheduler::STATUS_SCHEDULED;
@ -174,4 +174,4 @@ class Scheduler {
}
return;
}
}
}