Skip to content

Commit

Permalink
Merge branch '5.4' into 6.3
Browse files Browse the repository at this point in the history
* 5.4:
  allow environment variables starting with an underscore
  Update a test
  Remove #StandWithUkraine
  [Notifier][Smsc] Require login and password
  • Loading branch information
fabpot committed Dec 28, 2023
2 parents 2673982 + fc93ad4 commit c67ba5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SmscTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ final class SmscTransport extends AbstractTransport
private ?string $password;
private string $from;

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

Expand Down

0 comments on commit c67ba5a

Please sign in to comment.