Skip to content

Commit 12ac215

Browse files
committed
Merge branch '3.x'
2 parents 43902b4 + f0d6a90 commit 12ac215

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/workflows/static-analysis.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Code style and composer validate
33
on:
44
pull_request:
55
push:
6-
branches: [ master, 2.x ]
6+
branches: [ master, 2.x, 3.x ]
77

88
jobs:
99
composer-validate:

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
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

docs/emails.rst

-7
Original file line numberDiff line numberDiff 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

tests/Doctrine/UserManagerTest.php

+1-1
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)