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()
41
41
public function testConstructorWithNoRecipients ()
42
42
{
43
43
$ this ->expectException (\InvalidArgumentException::class);
44
- $ e = new SmtpEnvelope (new Address ('fabien@symfony.com ' ), []);
44
+ new SmtpEnvelope (new Address ('fabien@symfony.com ' ), []);
45
45
}
46
46
47
47
public function testConstructorWithWrongRecipients ()
48
48
{
49
49
$ 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 ' ]);
51
51
}
52
52
53
53
public function testSenderFromHeaders ()
Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ public function testConstructorWithAddressRecipients()
41
41
public function testConstructorWithNoRecipients ()
42
42
{
43
43
$ this ->expectException (\InvalidArgumentException::class);
44
- $ e = new SmtpEnvelope (new Address ('fabien@symfony.com ' ), []);
44
+ new SmtpEnvelope (new Address ('fabien@symfony.com ' ), []);
45
45
}
46
46
47
47
public function testConstructorWithWrongRecipients ()
48
48
{
49
49
$ 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 ' ]);
51
51
}
52
52
53
53
public function testSenderFromHeaders ()
You can’t perform that action at this time.
0 commit comments