Skip to content

Commit 0c35e7e

Browse files
committed
Fixing CS
1 parent a69bdb5 commit 0c35e7e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

EventSubscriber/CallbackSubscriber.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CallbackSubscriber implements EventSubscriberInterface
1818
{
1919
public function __construct(
2020
private TransportCallback $transportCallback,
21-
private CoreParametersHelper $coreParametersHelper
21+
private CoreParametersHelper $coreParametersHelper,
2222
) {
2323
}
2424

Mailer/Factory/SparkpostTransportFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function __construct(
2323
private TranslatorInterface $translator,
2424
EventDispatcherInterface $eventDispatcher,
2525
HttpClientInterface $client = null,
26-
LoggerInterface $logger = null
26+
LoggerInterface $logger = null,
2727
) {
2828
parent::__construct($eventDispatcher, $client, $logger);
2929
}

Mailer/Transport/SparkpostTransport.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function __construct(
5858
private TransportCallback $callback,
5959
HttpClientInterface $client = null,
6060
EventDispatcherInterface $dispatcher = null,
61-
LoggerInterface $logger = null
61+
LoggerInterface $logger = null,
6262
) {
6363
parent::__construct($client, $dispatcher, $logger);
6464
$this->host = self::SPARK_POST_HOSTS[$region] ?? self::SPARK_POST_HOSTS['us'];
@@ -367,7 +367,7 @@ private function checkTemplateIsValid(array $payload): void
367367
private function getSparkpostResponse(
368368
string $endpoint,
369369
array $payload,
370-
string $method = Request::METHOD_POST
370+
string $method = Request::METHOD_POST,
371371
): ResponseInterface {
372372
return $this->client->request(
373373
$method,

0 commit comments

Comments
 (0)