bug #33582 [Mailer] Fix SmtpEnvelope renaming to Envelope (fabpot)

This PR was merged into the 4.4 branch.

Discussion
----------

[Mailer] Fix SmtpEnvelope renaming to Envelope

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no <!-- please update src/**/CHANGELOG.md files -->
| Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tickets       | n/a
| License       | MIT
| Doc PR        | n/a
<!--
Replace this notice by a short README for your feature/bugfix. This will help people
understand your PR and can be used as a start for the documentation.

Additionally (see https://symfony.com/roadmap):
 - Always add tests and ensure they pass.
 - Never break backward compatibility (see https://symfony.com/bc).
 - Bug fixes must be submitted against the lowest maintained branch where they apply
   (lowest branches are regularly merged to upper ones so they get the fixes too.)
 - Features and deprecations must be submitted against branch 4.4.
 - Legacy code removals go to the master branch.
-->

Commits
-------

5796c780ba [Mailer] Fix SmtpEnvelope renaming to Envelope
This commit is contained in:
Fabien Potencier 2019-09-15 10:47:53 +02:00
commit e82fdbf97f

View File

@ -16,7 +16,7 @@ use Symfony\Component\Mailer\Envelope;
use Symfony\Component\Mime\RawMessage;
/**
* Allows the transformation of a Message and the SMTP Envelope before the email is sent.
* Allows the transformation of a Message and the Envelope before the email is sent.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
@ -45,12 +45,12 @@ final class MessageEvent extends Event
$this->message = $message;
}
public function getEnvelope(): SmtpEnvelope
public function getEnvelope(): Envelope
{
return $this->envelope;
}
public function setEnvelope(SmtpEnvelope $envelope): void
public function setEnvelope(Envelope $envelope): void
{
$this->envelope = $envelope;
}