File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ public function testConstructorWithAddressRecipients()
4141 public function testConstructorWithNoRecipients ()
4242 {
4343 $ this ->expectException (\InvalidArgumentException::class);
44- $ e = new SmtpEnvelope (new Address ('fabien@symfony.com ' ), []);
44+ new SmtpEnvelope (new Address ('fabien@symfony.com ' ), []);
4545 }
4646
4747 public function testConstructorWithWrongRecipients ()
4848 {
4949 $ this ->expectException (\InvalidArgumentException::class);
50- $ e = new SmtpEnvelope (new Address ('fabien@symfony.com ' ), ['lucas@symfony.com ' ]);
50+ new SmtpEnvelope (new Address ('fabien@symfony.com ' ), ['lucas@symfony.com ' ]);
5151 }
5252
5353 public function testSenderFromHeaders ()
Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ public function testConstructorWithAddressRecipients()
4141 public function testConstructorWithNoRecipients ()
4242 {
4343 $ this ->expectException (\InvalidArgumentException::class);
44- $ e = new SmtpEnvelope (new Address ('fabien@symfony.com ' ), []);
44+ new SmtpEnvelope (new Address ('fabien@symfony.com ' ), []);
4545 }
4646
4747 public function testConstructorWithWrongRecipients ()
4848 {
4949 $ this ->expectException (\InvalidArgumentException::class);
50- $ e = new SmtpEnvelope (new Address ('fabien@symfony.com ' ), ['lucas@symfony.com ' ]);
50+ new SmtpEnvelope (new Address ('fabien@symfony.com ' ), ['lucas@symfony.com ' ]);
5151 }
5252
5353 public function testSenderFromHeaders ()
You can’t perform that action at this time.
0 commit comments