Skip to content

Commit 4224245

Browse files
Merge branch '6.3' into 6.4
* 6.3: minor #53524 [Messenger] [AmazonSqs] Allow `async-aws/sqs` version 2 (smoench) Fix bad merge List CS fix in .git-blame-ignore-revs Fix implicitly-required parameters List CS fix in .git-blame-ignore-revs Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value
1 parent 4ee4924 commit 4224245

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Transport/ScalewayApiTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ final class ScalewayApiTransport extends AbstractApiTransport
3232
private string $token;
3333
private ?string $region;
3434

35-
public function __construct(string $projectId, string $token, string $region = null, HttpClientInterface $client = null, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
35+
public function __construct(string $projectId, string $token, ?string $region = null, ?HttpClientInterface $client = null, ?EventDispatcherInterface $dispatcher = null, ?LoggerInterface $logger = null)
3636
{
3737
$this->projectId = $projectId;
3838
$this->token = $token;

Transport/ScalewaySmtpTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
final class ScalewaySmtpTransport extends EsmtpTransport
1919
{
20-
public function __construct(string $projetId, string $token, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
20+
public function __construct(string $projetId, string $token, ?EventDispatcherInterface $dispatcher = null, ?LoggerInterface $logger = null)
2121
{
2222
parent::__construct('smtp.tem.scw.cloud', 465, true, $dispatcher, $logger);
2323

0 commit comments

Comments
 (0)