[Mailer] [Amazon] Fix @param annotation

This commit is contained in:
Oskar Stark 2020-12-11 14:09:19 +01:00
parent 150d8506e4
commit 514881c708
3 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ class SesApiTransport extends AbstractApiTransport
private $region;
/**
* @param string $region Amazon SES region (currently one of us-east-1, us-west-2, or eu-west-1)
* @param string|null $region Amazon SES region (currently one of us-east-1, us-west-2, or eu-west-1)
*/
public function __construct(string $accessKey, string $secretKey, string $region = null, HttpClientInterface $client = null, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
{

View File

@ -31,7 +31,7 @@ class SesHttpTransport extends AbstractHttpTransport
private $region;
/**
* @param string $region Amazon SES region (currently one of us-east-1, us-west-2, or eu-west-1)
* @param string|null $region Amazon SES region (currently one of us-east-1, us-west-2, or eu-west-1)
*/
public function __construct(string $accessKey, string $secretKey, string $region = null, HttpClientInterface $client = null, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
{

View File

@ -21,7 +21,7 @@ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
class SesSmtpTransport extends EsmtpTransport
{
/**
* @param string $region Amazon SES region (currently one of us-east-1, us-west-2, or eu-west-1)
* @param string|null $region Amazon SES region (currently one of us-east-1, us-west-2, or eu-west-1)
*/
public function __construct(string $username, string $password, string $region = null, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
{