File tree 4 files changed +11
-11
lines changed 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ Active Core Members
60
60
* **Christian Flothmann ** (`xabbuh `_);
61
61
* **Tobias Schultze ** (`Tobion `_);
62
62
* **Kévin Dunglas ** (`dunglas `_);
63
- * **Jakub Zalas ** (`jakzal `_);
64
63
* **Javier Eguiluz ** (`javiereguiluz `_);
65
64
* **Grégoire Pineau ** (`lyrixx `_);
66
65
* **Ryan Weaver ** (`weaverryan `_);
@@ -106,7 +105,8 @@ Symfony contributions:
106
105
* **Romain Neutron ** (`romainneutron `_);
107
106
* **Jordi Boggiano ** (`Seldaek `_);
108
107
* **Lukas Kahwe Smith ** (`lsmith77 `_);
109
- * **Jules Pietri ** (`HeahDude `_).
108
+ * **Jules Pietri ** (`HeahDude `_);
109
+ * **Jakub Zalas ** (`jakzal `_).
110
110
111
111
Core Membership Application
112
112
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -163,9 +163,9 @@ party provider:
163
163
Mailchimp Mandrill mandrill+smtp://USERNAME:PASSWORD@default mandrill+https://KEY@default mandrill+api://KEY@default
164
164
Mailgun mailgun+smtp://USERNAME:PASSWORD@default mailgun+https://KEY:DOMAIN@default mailgun+api://KEY:DOMAIN@default
165
165
Mailjet mailjet+smtp://ACCESS_KEY:SECRET_KEY@default n/a mailjet+api://ACCESS_KEY:SECRET_KEY@default
166
- Postmark postmark+smtp://ID:ID @default n/a postmark+api://KEY@default
167
- Sendgrid sendgrid+smtp://apikey: KEY@default n/a sendgrid+api://KEY@default
168
- Sendinblue sendinblue+smtp://apikey: USERNAME:PASSWORD@default n/a sendinblue+api://KEY@default
166
+ Postmark postmark+smtp://ID@default n/a postmark+api://KEY@default
167
+ Sendgrid sendgrid+smtp://KEY@default n/a sendgrid+api://KEY@default
168
+ Sendinblue sendinblue+smtp://USERNAME:PASSWORD@default n/a sendinblue+api://KEY@default
169
169
==================== ==================================================== =========================================== ========================================
170
170
171
171
.. caution ::
@@ -192,8 +192,8 @@ party provider:
192
192
.. code-block :: env
193
193
194
194
# .env
195
- MAILER_DSN=mailgun+https://KEY:DOMAIN@example .com
196
- MAILER_DSN=mailgun+https://KEY:DOMAIN@example .com:99
195
+ MAILER_DSN=mailgun+https://KEY:DOMAIN@requestbin .com
196
+ MAILER_DSN=mailgun+https://KEY:DOMAIN@requestbin .com:99
197
197
198
198
Note that the protocol is *always * HTTPs and cannot be changed.
199
199
Original file line number Diff line number Diff line change @@ -494,15 +494,15 @@ The following credential classes are supported by default:
494
494
use Symfony\Component\Security\Http\Authenticator\Passport\Credentials\PasswordCredentials;
495
495
496
496
// ...
497
- return new Passport($user , new PasswordCredentials($plaintextPassword));
497
+ return new Passport(new UserBadge($email) , new PasswordCredentials($plaintextPassword));
498
498
499
499
:class: `Symfony\\ Component\\ Security\\ Http\\ Authenticator\\ Passport\\ Credentials\\ CustomCredentials `
500
500
Allows a custom closure to check credentials::
501
501
502
502
use Symfony\Component\Security\Http\Authenticator\Passport\Credentials\CustomCredentials;
503
503
504
504
// ...
505
- return new Passport($user , new CustomCredentials(
505
+ return new Passport(new UserBadge($email) , new CustomCredentials(
506
506
// If this function returns anything else than `true`, the credentials
507
507
// are marked as invalid.
508
508
// The $credentials parameter is equal to the next argument of this class
@@ -581,7 +581,7 @@ would initialize the passport like this::
581
581
// ... validate no parameter is empty
582
582
583
583
return new Passport(
584
- new UserBadge($user ),
584
+ new UserBadge($email ),
585
585
new PasswordCredentials($password),
586
586
[new CsrfTokenBadge('login', $csrfToken)]
587
587
);
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ Mailer
110
110
- ``assertQueuedEmailCount() ``
111
111
- ``assertEmailIsQueued() ``
112
112
- ``assertEmailIsNotQueued() ``
113
- - ``assertEmailAttachementCount () ``
113
+ - ``assertEmailAttachmentCount () ``
114
114
- ``assertEmailTextBodyContains() ``
115
115
- ``assertEmailTextBodyNotContains() ``
116
116
- ``assertEmailHtmlBodyContains() ``
You can’t perform that action at this time.
0 commit comments