Add space between foreach and ‘(‘

[MAILPOET-1791]
This commit is contained in:
Ján Mikláš
2019-02-13 12:52:39 +01:00
committed by M. Shull
parent fba2914392
commit ebbdec5ebd
134 changed files with 351 additions and 351 deletions

View File

@@ -53,7 +53,7 @@ class CustomFieldsTest extends \MailPoetTest {
function _before() {
parent::_before();
foreach($this->custom_fields as $custom_field) {
foreach ($this->custom_fields as $custom_field) {
CustomField::createOrUpdate($custom_field);
}
}
@@ -64,7 +64,7 @@ class CustomFieldsTest extends \MailPoetTest {
expect($response->status)->equals(APIResponse::STATUS_OK);
expect($response->data)->count(count($this->custom_fields));
foreach($response->data as $custom_field) {
foreach ($response->data as $custom_field) {
expect($custom_field['name'])->notEmpty();
expect($custom_field['type'])->notEmpty();
expect($custom_field['params'])->notEmpty();