- Fixes const value declaration for PHP <5.6
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
<?php
|
||||
namespace MailPoet\Settings;
|
||||
|
||||
use MailPoet\Mailer\Methods\AmazonSES;
|
||||
|
||||
class Hosts {
|
||||
private static $_smtp = array(
|
||||
'AmazonSES' => array(
|
||||
@@ -14,7 +12,11 @@ class Hosts {
|
||||
'access_key',
|
||||
'secret_key'
|
||||
),
|
||||
'regions' => AmazonSES::SES_REGIONS
|
||||
'regions' => array(
|
||||
'US East (N. Virginia)' => 'us-east-1',
|
||||
'US West (Oregon)' => 'us-west-2',
|
||||
'EU (Ireland)' => 'eu-west-1'
|
||||
)
|
||||
),
|
||||
'SendGrid' => array(
|
||||
'name' => 'SendGrid',
|
||||
|
Reference in New Issue
Block a user