File tree 4 files changed +6
-9
lines changed
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
3
3
on :
4
4
pull_request :
5
5
push :
6
- branches : [ master, 2.x ]
6
+ branches : [ master, 2.x, 3.x ]
7
7
8
8
jobs :
9
9
composer-validate :
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ ### 3.4.0 (2024-06-25)
5
+
6
+ * Deprecated the TwigSwiftMailer implementation
7
+
4
8
### 3.3.0 (2024-06-24)
5
9
6
10
* 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.
211
211
# ...
212
212
service :
213
213
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()
80
80
public function testFindUserBy ()
81
81
{
82
82
$ 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 ));
84
84
85
85
$ this ->userManager ->findUserBy ($ crit );
86
86
}
You can’t perform that action at this time.
0 commit comments