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 @@ -42,13 +42,13 @@ public function testConstructorWithAddressRecipients()
4242 public function testConstructorWithNoRecipients ()
4343 {
4444 $ this ->expectException (\InvalidArgumentException::class);
45- $ e = new Envelope (new Address ('fabien@symfony.com ' ), []);
45+ new Envelope (new Address ('fabien@symfony.com ' ), []);
4646 }
4747
4848 public function testConstructorWithWrongRecipients ()
4949 {
5050 $ this ->expectException (\InvalidArgumentException::class);
51- $ e = new Envelope (new Address ('fabien@symfony.com ' ), ['lucas@symfony.com ' ]);
51+ new Envelope (new Address ('fabien@symfony.com ' ), ['lucas@symfony.com ' ]);
5252 }
5353
5454 public function testSenderFromHeaders ()
Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ public function testConstructorWithAddressRecipients()
4242 public function testConstructorWithNoRecipients ()
4343 {
4444 $ this ->expectException (\InvalidArgumentException::class);
45- $ e = new Envelope (new Address ('fabien@symfony.com ' ), []);
45+ new Envelope (new Address ('fabien@symfony.com ' ), []);
4646 }
4747
4848 public function testConstructorWithWrongRecipients ()
4949 {
5050 $ this ->expectException (\InvalidArgumentException::class);
51- $ e = new Envelope (new Address ('fabien@symfony.com ' ), ['lucas@symfony.com ' ]);
51+ new Envelope (new Address ('fabien@symfony.com ' ), ['lucas@symfony.com ' ]);
5252 }
5353
5454 public function testSenderFromHeaders ()
You can’t perform that action at this time.
0 commit comments