Enforce array trailling commas

[MAILPOET-2090]
This commit is contained in:
Pavel Dohnal
2019-05-20 11:52:21 +02:00
committed by M. Shull
parent fcf5fe1d5d
commit b9af15e19f
117 changed files with 1791 additions and 1829 deletions

View File

@@ -495,7 +495,7 @@ class SubscribersTest extends \MailPoetTest {
$custom_field = CustomField::createOrUpdate([
'name' => 'custom field',
'type' => 'text',
'params' => ['required' => '1']
'params' => ['required' => '1'],
]);
$form = Form::createOrUpdate([
'name' => 'form',
@@ -645,7 +645,7 @@ class SubscribersTest extends \MailPoetTest {
'last_name' => 'Doe',
'status' => Subscriber::STATUS_SUBSCRIBED,
'segments' => [
$this->segment_1->id
$this->segment_1->id,
],
'source' => Source::IMPORTED,
));