Skip to content

Commit 002944f

Browse files
committed
minor #10555 fix order of member vars (OskarStark)
This PR was merged into the 4.1 branch. Discussion ---------- fix order of member vars <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 92f23cf fix order of member vars
2 parents 0cf108a + 92f23cf commit 002944f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/messenger.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ First, create your sender::
175175

176176
class ImportantActionToEmailSender implements SenderInterface
177177
{
178-
private $toEmail;
179178
private $mailer;
179+
private $toEmail;
180180

181181
public function __construct(\Swift_Mailer $mailer, string $toEmail)
182182
{

0 commit comments

Comments
 (0)