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