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

@ -140,7 +140,7 @@ class SendingTest extends \MailPoetTest {
function testItGetsBatchOfScheduledQueues() {
$this->_after();
$amount = 5;
for($i = 0; $i < $amount + 3; $i += 1) {
for ($i = 0; $i < $amount + 3; $i += 1) {
$this->createNewSendingTask(['status' => ScheduledTask::STATUS_SCHEDULED]);
}
expect(SendingTask::getScheduledQueues($amount))->count($amount);
@ -171,7 +171,7 @@ class SendingTest extends \MailPoetTest {
function testItGetsBatchOfRunningQueues() {
$this->_after();
$amount = 5;
for($i = 0; $i < $amount + 3; $i += 1) {
for ($i = 0; $i < $amount + 3; $i += 1) {
$this->createNewSendingTask(['status' => null]);
}
expect(SendingTask::getRunningQueues($amount))->count($amount);