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

@@ -25,7 +25,7 @@ class CronHelperTest extends \MailPoetTest {
));
$this->settings->set('sender', [
'name' => 'John Doe',
'address' => 'john.doe@example.com'
'address' => 'john.doe@example.com',
]);
}
@@ -287,7 +287,7 @@ class CronHelperTest extends \MailPoetTest {
$wp = Stub::make(new WPFunctions, [
'wpRemotePost' => function() use (&$wp_remote_get_args) {
return $wp_remote_get_args = func_get_args();
}
},
]);
$wp->addFilter('mailpoet_cron_request_args', $filter);
CronHelper::queryCronUrl('test', $wp);