File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed
Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Code style and composer validate
33on :
44 pull_request :
55 push :
6- branches : [ master, 2.x ]
6+ branches : [ master, 2.x, 3.x ]
77
88jobs :
99 composer-validate :
Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ ### 3.4.0 (2024-06-25)
5+
6+ * Deprecated the TwigSwiftMailer implementation
7+
48### 3.3.0 (2024-06-24)
59
610* Added a mailer implementation based on symfony/mailer and Twig
Original file line number Diff line number Diff line change @@ -211,10 +211,3 @@ An example is listed below.
211211 # ...
212212 service :
213213 mailer : app.custom_fos_user_mailer
214-
215- To see an example of a working implementation of the ``MailerInterface ``
216- see the `ZetaMailer `_ class of the `ZetaWebmailBundle `_. This implementation
217- uses the Zeta Components Mail to send emails instead of the mailer component.
218-
219- .. _ZetaMailer : https://github.com/simplethings/ZetaWebmailBundle/blob/master/UserBundle/ZetaMailer.php
220- .. _ZetaWebmailBundle : https://github.com/simplethings/ZetaWebmailBundle
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public function testGetClass()
8080 public function testFindUserBy ()
8181 {
8282 $ crit = ['foo ' => 'bar ' ];
83- $ this ->repository ->expects ($ this ->once ())->method ('findOneBy ' )->with ($ this ->equalTo ($ crit ))->will ($ this ->returnValue ([] ));
83+ $ this ->repository ->expects ($ this ->once ())->method ('findOneBy ' )->with ($ this ->equalTo ($ crit ))->will ($ this ->returnValue (null ));
8484
8585 $ this ->userManager ->findUserBy ($ crit );
8686 }
You can’t perform that action at this time.
0 commit comments