Skip to content

Commit b017e8b

Browse files
committed
Merge branch '6.3' into 6.4
* 6.3: [VarDumper] Fix CSS alignment in HtmlDumper allow environment variables starting with an underscore Update a test [Mailer][Postmark] Add missing changelog for webhook support Remove #StandWithUkraine [Notifier][Smsc] Require login and password
2 parents f20b024 + c67ba5a commit b017e8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SmscTransport.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ final class SmscTransport extends AbstractTransport
3434
private ?string $password;
3535
private string $from;
3636

37-
public function __construct(?string $username, #[\SensitiveParameter] ?string $password, string $from, HttpClientInterface $client = null, EventDispatcherInterface $dispatcher = null)
37+
public function __construct(string $login, #[\SensitiveParameter] string $password, string $from, HttpClientInterface $client = null, EventDispatcherInterface $dispatcher = null)
3838
{
39-
$this->login = $username;
39+
$this->login = $login;
4040
$this->password = $password;
4141
$this->from = $from;
4242

0 commit comments

Comments
 (0)