Skip to content

Commit a93636e

Browse files
committed
minor symfony#60280 Redundant assignment to promoted property (wkania)
This PR was merged into the 6.4 branch. Discussion ---------- Redundant assignment to promoted property | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | | License | MIT Commits ------- 4ee2665 Redundant assignment to promoted property
2 parents 368bfb7 + 4ee2665 commit a93636e

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/Symfony/Component/Mailer/Command/MailerTestCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ final class MailerTestCommand extends Command
2828
{
2929
public function __construct(private TransportInterface $transport)
3030
{
31-
$this->transport = $transport;
32-
3331
parent::__construct();
3432
}
3533

src/Symfony/Component/Notifier/Bridge/Novu/NovuTransport.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public function __construct(
3434
?HttpClientInterface $client = null,
3535
?EventDispatcherInterface $dispatcher = null
3636
) {
37-
$this->apiKey = $apiKey;
3837
parent::__construct($client, $dispatcher);
3938
}
4039

0 commit comments

Comments
 (0)