Skip to content

Commit 9e2abf3

Browse files
OskarStarknicolas-grekas
authored andcommitted
[Notifier] [Bridges] Use CPP
1 parent 7c0e244 commit 9e2abf3

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

ZendeskTransport.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,14 @@
2626
*/
2727
final class ZendeskTransport extends AbstractTransport
2828
{
29-
private string $email;
30-
private string $token;
31-
32-
public function __construct(string $email, #[\SensitiveParameter] string $token, HttpClientInterface $client = null, EventDispatcherInterface $dispatcher = null)
29+
public function __construct(
30+
private string $email,
31+
#[\SensitiveParameter] private string $token,
32+
HttpClientInterface $client = null,
33+
EventDispatcherInterface $dispatcher = null,
34+
)
3335
{
3436
parent::__construct($client, $dispatcher);
35-
36-
$this->email = $email;
37-
$this->token = $token;
3837
}
3938

4039
public function __toString(): string

0 commit comments

Comments
 (0)