Add rule for operator spacing

[MAILPOET-2090]
This commit is contained in:
Pavel Dohnal
2019-05-20 13:57:13 +02:00
committed by M. Shull
parent 5da7110eb6
commit 12ff88ee21
39 changed files with 167 additions and 162 deletions

View File

@ -226,7 +226,7 @@ class Populator {
$sender = $this->settings->fetch('sender', []);
$this->settings->set('subscriber_email_notification', [
'enabled' => true,
'address' => isset($sender['address'])? $sender['address'] : null,
'address' => isset($sender['address']) ? $sender['address'] : null,
]);
}
@ -235,7 +235,7 @@ class Populator {
$sender = $this->settings->fetch('sender', []);
$this->settings->set('stats_notifications', [
'enabled' => true,
'address' => isset($sender['address'])? $sender['address'] : null,
'address' => isset($sender['address']) ? $sender['address'] : null,
]);
}