File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ from the user data storage, hash the password the user has just provided
119
119
the given password is valid.
120
120
121
121
This functionality is offered by the :class: `Symfony\\ Component\\ Security\\ Core\\ Authentication\\ Provider\\ DaoAuthenticationProvider `.
122
- It fetches the user's data from a :class: `Symfony\\ Component\\ Security\\ Core\\ User\\ UserProviderInterface` ` ,
122
+ It fetches the user's data from a :class: `Symfony\\ Component\\ Security\\ Core\\ User\\ UserProviderInterface `,
123
123
uses a :class: `Symfony\\ Component\\ Security\\ Core\\ Encoder\\ PasswordEncoderInterface `
124
124
to create a hash of the password and returns an authenticated token if the
125
125
password was valid::
Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ may also be tags in other bundles you use that aren't listed here.
31
31
+-----------------------------------+---------------------------------------------------------------------------+
32
32
| `data_collector `_ | Create a class that collects custom data for the profiler |
33
33
+-----------------------------------+---------------------------------------------------------------------------+
34
+ | `doctrine.event_listener `_ | Add a Doctrine event listener |
35
+ +-----------------------------------+---------------------------------------------------------------------------+
36
+ | `doctrine.event_subscriber `_ | Add a Doctrine event subscriber |
37
+ +-----------------------------------+---------------------------------------------------------------------------+
34
38
| `form.type `_ | Create a custom form field type |
35
39
+-----------------------------------+---------------------------------------------------------------------------+
36
40
| `form.type_extension `_ | Create a custom "form extension" |
@@ -231,6 +235,22 @@ data_collector
231
235
For details on creating your own custom data collection, read the cookbook
232
236
article: :doc:`/cookbook/profiler/data_collector`.
233
237
238
+ doctrine.event_listener
239
+ --------------
240
+
241
+ **Purpose**: Add a Doctrine event listener
242
+
243
+ For details on creating Doctrine event listeners, read the cookbook article:
244
+ :doc:`/cookbook/doctrine/event_listeners_subscribers`.
245
+
246
+ doctrine.event_subscriber
247
+ --------------
248
+
249
+ **Purpose**: Add a Doctrine event subscriber
250
+
251
+ For details on creating Doctrine event subscribers, read the cookbook article:
252
+ :doc:`/cookbook/doctrine/event_listeners_subscribers`.
253
+
234
254
.. _dic-tags-form-type:
235
255
236
256
form.type
You can’t perform that action at this time.
0 commit comments