We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 135418b commit a2e1925Copy full SHA for a2e1925
Tests/SmtpEnvelopeTest.php
@@ -41,13 +41,13 @@ public function testConstructorWithAddressRecipients()
41
public function testConstructorWithNoRecipients()
42
{
43
$this->expectException(\InvalidArgumentException::class);
44
- $e = new SmtpEnvelope(new Address('fabien@symfony.com'), []);
+ new SmtpEnvelope(new Address('fabien@symfony.com'), []);
45
}
46
47
public function testConstructorWithWrongRecipients()
48
49
50
- $e = new SmtpEnvelope(new Address('fabien@symfony.com'), ['lucas@symfony.com']);
+ new SmtpEnvelope(new Address('fabien@symfony.com'), ['lucas@symfony.com']);
51
52
53
public function testSenderFromHeaders()
0 commit comments