@@ -23,7 +23,7 @@ final class FOSUserEvents
23
23
*
24
24
* @Event("FOS\UserBundle\Event\GetResponseUserEvent")
25
25
*/
26
- const CHANGE_PASSWORD_INITIALIZE = 'fos_user.change_password.edit.initialize ' ;
26
+ public const CHANGE_PASSWORD_INITIALIZE = 'fos_user.change_password.edit.initialize ' ;
27
27
28
28
/**
29
29
* The CHANGE_PASSWORD_SUCCESS event occurs when the change password form is submitted successfully.
@@ -32,7 +32,7 @@ final class FOSUserEvents
32
32
*
33
33
* @Event("FOS\UserBundle\Event\FormEvent")
34
34
*/
35
- const CHANGE_PASSWORD_SUCCESS = 'fos_user.change_password.edit.success ' ;
35
+ public const CHANGE_PASSWORD_SUCCESS = 'fos_user.change_password.edit.success ' ;
36
36
37
37
/**
38
38
* The CHANGE_PASSWORD_COMPLETED event occurs after saving the user in the change password process.
@@ -41,7 +41,7 @@ final class FOSUserEvents
41
41
*
42
42
* @Event("FOS\UserBundle\Event\FilterUserResponseEvent")
43
43
*/
44
- const CHANGE_PASSWORD_COMPLETED = 'fos_user.change_password.edit.completed ' ;
44
+ public const CHANGE_PASSWORD_COMPLETED = 'fos_user.change_password.edit.completed ' ;
45
45
46
46
/**
47
47
* The GROUP_CREATE_INITIALIZE event occurs when the group creation process is initialized.
@@ -50,7 +50,7 @@ final class FOSUserEvents
50
50
*
51
51
* @Event("FOS\UserBundle\Event\GroupEvent")
52
52
*/
53
- const GROUP_CREATE_INITIALIZE = 'fos_user.group.create.initialize ' ;
53
+ public const GROUP_CREATE_INITIALIZE = 'fos_user.group.create.initialize ' ;
54
54
55
55
/**
56
56
* The GROUP_CREATE_SUCCESS event occurs when the group creation form is submitted successfully.
@@ -59,7 +59,7 @@ final class FOSUserEvents
59
59
*
60
60
* @Event("FOS\UserBundle\Event\FormEvent")
61
61
*/
62
- const GROUP_CREATE_SUCCESS = 'fos_user.group.create.success ' ;
62
+ public const GROUP_CREATE_SUCCESS = 'fos_user.group.create.success ' ;
63
63
64
64
/**
65
65
* The GROUP_CREATE_COMPLETED event occurs after saving the group in the group creation process.
@@ -68,7 +68,7 @@ final class FOSUserEvents
68
68
*
69
69
* @Event("FOS\UserBundle\Event\FilterGroupResponseEvent")
70
70
*/
71
- const GROUP_CREATE_COMPLETED = 'fos_user.group.create.completed ' ;
71
+ public const GROUP_CREATE_COMPLETED = 'fos_user.group.create.completed ' ;
72
72
73
73
/**
74
74
* The GROUP_DELETE_COMPLETED event occurs after deleting the group.
@@ -77,7 +77,7 @@ final class FOSUserEvents
77
77
*
78
78
* @Event("FOS\UserBundle\Event\FilterGroupResponseEvent")
79
79
*/
80
- const GROUP_DELETE_COMPLETED = 'fos_user.group.delete.completed ' ;
80
+ public const GROUP_DELETE_COMPLETED = 'fos_user.group.delete.completed ' ;
81
81
82
82
/**
83
83
* The GROUP_EDIT_INITIALIZE event occurs when the group editing process is initialized.
@@ -86,7 +86,7 @@ final class FOSUserEvents
86
86
*
87
87
* @Event("FOS\UserBundle\Event\GetResponseGroupEvent")
88
88
*/
89
- const GROUP_EDIT_INITIALIZE = 'fos_user.group.edit.initialize ' ;
89
+ public const GROUP_EDIT_INITIALIZE = 'fos_user.group.edit.initialize ' ;
90
90
91
91
/**
92
92
* The GROUP_EDIT_SUCCESS event occurs when the group edit form is submitted successfully.
@@ -95,7 +95,7 @@ final class FOSUserEvents
95
95
*
96
96
* @Event("FOS\UserBundle\Event\FormEvent")
97
97
*/
98
- const GROUP_EDIT_SUCCESS = 'fos_user.group.edit.success ' ;
98
+ public const GROUP_EDIT_SUCCESS = 'fos_user.group.edit.success ' ;
99
99
100
100
/**
101
101
* The GROUP_EDIT_COMPLETED event occurs after saving the group in the group edit process.
@@ -104,7 +104,7 @@ final class FOSUserEvents
104
104
*
105
105
* @Event("FOS\UserBundle\Event\FilterGroupResponseEvent")
106
106
*/
107
- const GROUP_EDIT_COMPLETED = 'fos_user.group.edit.completed ' ;
107
+ public const GROUP_EDIT_COMPLETED = 'fos_user.group.edit.completed ' ;
108
108
109
109
/**
110
110
* The PROFILE_EDIT_INITIALIZE event occurs when the profile editing process is initialized.
@@ -113,7 +113,7 @@ final class FOSUserEvents
113
113
*
114
114
* @Event("FOS\UserBundle\Event\GetResponseUserEvent")
115
115
*/
116
- const PROFILE_EDIT_INITIALIZE = 'fos_user.profile.edit.initialize ' ;
116
+ public const PROFILE_EDIT_INITIALIZE = 'fos_user.profile.edit.initialize ' ;
117
117
118
118
/**
119
119
* The PROFILE_EDIT_SUCCESS event occurs when the profile edit form is submitted successfully.
@@ -122,7 +122,7 @@ final class FOSUserEvents
122
122
*
123
123
* @Event("FOS\UserBundle\Event\FormEvent")
124
124
*/
125
- const PROFILE_EDIT_SUCCESS = 'fos_user.profile.edit.success ' ;
125
+ public const PROFILE_EDIT_SUCCESS = 'fos_user.profile.edit.success ' ;
126
126
127
127
/**
128
128
* The PROFILE_EDIT_COMPLETED event occurs after saving the user in the profile edit process.
@@ -131,7 +131,7 @@ final class FOSUserEvents
131
131
*
132
132
* @Event("FOS\UserBundle\Event\FilterUserResponseEvent")
133
133
*/
134
- const PROFILE_EDIT_COMPLETED = 'fos_user.profile.edit.completed ' ;
134
+ public const PROFILE_EDIT_COMPLETED = 'fos_user.profile.edit.completed ' ;
135
135
136
136
/**
137
137
* The REGISTRATION_INITIALIZE event occurs when the registration process is initialized.
@@ -140,7 +140,7 @@ final class FOSUserEvents
140
140
*
141
141
* @Event("FOS\UserBundle\Event\UserEvent")
142
142
*/
143
- const REGISTRATION_INITIALIZE = 'fos_user.registration.initialize ' ;
143
+ public const REGISTRATION_INITIALIZE = 'fos_user.registration.initialize ' ;
144
144
145
145
/**
146
146
* The REGISTRATION_SUCCESS event occurs when the registration form is submitted successfully.
@@ -149,7 +149,7 @@ final class FOSUserEvents
149
149
*
150
150
* @Event("FOS\UserBundle\Event\FormEvent")
151
151
*/
152
- const REGISTRATION_SUCCESS = 'fos_user.registration.success ' ;
152
+ public const REGISTRATION_SUCCESS = 'fos_user.registration.success ' ;
153
153
154
154
/**
155
155
* The REGISTRATION_FAILURE event occurs when the registration form is not valid.
@@ -159,7 +159,7 @@ final class FOSUserEvents
159
159
*
160
160
* @Event("FOS\UserBundle\Event\FormEvent")
161
161
*/
162
- const REGISTRATION_FAILURE = 'fos_user.registration.failure ' ;
162
+ public const REGISTRATION_FAILURE = 'fos_user.registration.failure ' ;
163
163
164
164
/**
165
165
* The REGISTRATION_COMPLETED event occurs after saving the user in the registration process.
@@ -168,7 +168,7 @@ final class FOSUserEvents
168
168
*
169
169
* @Event("FOS\UserBundle\Event\FilterUserResponseEvent")
170
170
*/
171
- const REGISTRATION_COMPLETED = 'fos_user.registration.completed ' ;
171
+ public const REGISTRATION_COMPLETED = 'fos_user.registration.completed ' ;
172
172
173
173
/**
174
174
* The REGISTRATION_CONFIRM event occurs just before confirming the account.
@@ -177,7 +177,7 @@ final class FOSUserEvents
177
177
*
178
178
* @Event("FOS\UserBundle\Event\GetResponseUserEvent")
179
179
*/
180
- const REGISTRATION_CONFIRM = 'fos_user.registration.confirm ' ;
180
+ public const REGISTRATION_CONFIRM = 'fos_user.registration.confirm ' ;
181
181
182
182
/**
183
183
* The REGISTRATION_CONFIRMED event occurs after confirming the account.
@@ -186,7 +186,7 @@ final class FOSUserEvents
186
186
*
187
187
* @Event("FOS\UserBundle\Event\FilterUserResponseEvent")
188
188
*/
189
- const REGISTRATION_CONFIRMED = 'fos_user.registration.confirmed ' ;
189
+ public const REGISTRATION_CONFIRMED = 'fos_user.registration.confirmed ' ;
190
190
191
191
/**
192
192
* The RESETTING_RESET_REQUEST event occurs when a user requests a password reset of the account.
@@ -196,7 +196,7 @@ final class FOSUserEvents
196
196
*
197
197
* @Event("FOS\UserBundle\Event\GetResponseUserEvent")
198
198
*/
199
- const RESETTING_RESET_REQUEST = 'fos_user.resetting.reset.request ' ;
199
+ public const RESETTING_RESET_REQUEST = 'fos_user.resetting.reset.request ' ;
200
200
201
201
/**
202
202
* The RESETTING_RESET_INITIALIZE event occurs when the resetting process is initialized.
@@ -205,7 +205,7 @@ final class FOSUserEvents
205
205
*
206
206
* @Event("FOS\UserBundle\Event\GetResponseUserEvent")
207
207
*/
208
- const RESETTING_RESET_INITIALIZE = 'fos_user.resetting.reset.initialize ' ;
208
+ public const RESETTING_RESET_INITIALIZE = 'fos_user.resetting.reset.initialize ' ;
209
209
210
210
/**
211
211
* The RESETTING_RESET_SUCCESS event occurs when the resetting form is submitted successfully.
@@ -214,7 +214,7 @@ final class FOSUserEvents
214
214
*
215
215
* @Event("FOS\UserBundle\Event\FormEvent ")
216
216
*/
217
- const RESETTING_RESET_SUCCESS = 'fos_user.resetting.reset.success ' ;
217
+ public const RESETTING_RESET_SUCCESS = 'fos_user.resetting.reset.success ' ;
218
218
219
219
/**
220
220
* The RESETTING_RESET_COMPLETED event occurs after saving the user in the resetting process.
@@ -223,7 +223,7 @@ final class FOSUserEvents
223
223
*
224
224
* @Event("FOS\UserBundle\Event\FilterUserResponseEvent")
225
225
*/
226
- const RESETTING_RESET_COMPLETED = 'fos_user.resetting.reset.completed ' ;
226
+ public const RESETTING_RESET_COMPLETED = 'fos_user.resetting.reset.completed ' ;
227
227
228
228
/**
229
229
* The SECURITY_IMPLICIT_LOGIN event occurs when the user is logged in programmatically.
@@ -232,7 +232,7 @@ final class FOSUserEvents
232
232
*
233
233
* @Event("FOS\UserBundle\Event\UserEvent")
234
234
*/
235
- const SECURITY_IMPLICIT_LOGIN = 'fos_user.security.implicit_login ' ;
235
+ public const SECURITY_IMPLICIT_LOGIN = 'fos_user.security.implicit_login ' ;
236
236
237
237
/**
238
238
* The RESETTING_SEND_EMAIL_INITIALIZE event occurs when the send email process is initialized.
@@ -242,7 +242,7 @@ final class FOSUserEvents
242
242
*
243
243
* @Event("FOS\UserBundle\Event\GetResponseNullableUserEvent")
244
244
*/
245
- const RESETTING_SEND_EMAIL_INITIALIZE = 'fos_user.resetting.send_email.initialize ' ;
245
+ public const RESETTING_SEND_EMAIL_INITIALIZE = 'fos_user.resetting.send_email.initialize ' ;
246
246
247
247
/**
248
248
* The RESETTING_SEND_EMAIL_CONFIRM event occurs when all prerequisites to send email are
@@ -253,7 +253,7 @@ final class FOSUserEvents
253
253
*
254
254
* @Event("FOS\UserBundle\Event\GetResponseUserEvent")
255
255
*/
256
- const RESETTING_SEND_EMAIL_CONFIRM = 'fos_user.resetting.send_email.confirm ' ;
256
+ public const RESETTING_SEND_EMAIL_CONFIRM = 'fos_user.resetting.send_email.confirm ' ;
257
257
258
258
/**
259
259
* The RESETTING_SEND_EMAIL_COMPLETED event occurs after the email is sent.
@@ -263,7 +263,7 @@ final class FOSUserEvents
263
263
*
264
264
* @Event("FOS\UserBundle\Event\GetResponseUserEvent")
265
265
*/
266
- const RESETTING_SEND_EMAIL_COMPLETED = 'fos_user.resetting.send_email.completed ' ;
266
+ public const RESETTING_SEND_EMAIL_COMPLETED = 'fos_user.resetting.send_email.completed ' ;
267
267
268
268
/**
269
269
* The USER_CREATED event occurs when the user is created with UserManipulator.
@@ -272,7 +272,7 @@ final class FOSUserEvents
272
272
*
273
273
* @Event("FOS\UserBundle\Event\UserEvent")
274
274
*/
275
- const USER_CREATED = 'fos_user.user.created ' ;
275
+ public const USER_CREATED = 'fos_user.user.created ' ;
276
276
277
277
/**
278
278
* The USER_PASSWORD_CHANGED event occurs when the user is created with UserManipulator.
@@ -281,7 +281,7 @@ final class FOSUserEvents
281
281
*
282
282
* @Event("FOS\UserBundle\Event\UserEvent")
283
283
*/
284
- const USER_PASSWORD_CHANGED = 'fos_user.user.password_changed ' ;
284
+ public const USER_PASSWORD_CHANGED = 'fos_user.user.password_changed ' ;
285
285
286
286
/**
287
287
* The USER_ACTIVATED event occurs when the user is created with UserManipulator.
@@ -290,7 +290,7 @@ final class FOSUserEvents
290
290
*
291
291
* @Event("FOS\UserBundle\Event\UserEvent")
292
292
*/
293
- const USER_ACTIVATED = 'fos_user.user.activated ' ;
293
+ public const USER_ACTIVATED = 'fos_user.user.activated ' ;
294
294
295
295
/**
296
296
* The USER_DEACTIVATED event occurs when the user is created with UserManipulator.
@@ -299,7 +299,7 @@ final class FOSUserEvents
299
299
*
300
300
* @Event("FOS\UserBundle\Event\UserEvent")
301
301
*/
302
- const USER_DEACTIVATED = 'fos_user.user.deactivated ' ;
302
+ public const USER_DEACTIVATED = 'fos_user.user.deactivated ' ;
303
303
304
304
/**
305
305
* The USER_PROMOTED event occurs when the user is created with UserManipulator.
@@ -308,7 +308,7 @@ final class FOSUserEvents
308
308
*
309
309
* @Event("FOS\UserBundle\Event\UserEvent")
310
310
*/
311
- const USER_PROMOTED = 'fos_user.user.promoted ' ;
311
+ public const USER_PROMOTED = 'fos_user.user.promoted ' ;
312
312
313
313
/**
314
314
* The USER_DEMOTED event occurs when the user is created with UserManipulator.
@@ -317,5 +317,5 @@ final class FOSUserEvents
317
317
*
318
318
* @Event("FOS\UserBundle\Event\UserEvent")
319
319
*/
320
- const USER_DEMOTED = 'fos_user.user.demoted ' ;
320
+ public const USER_DEMOTED = 'fos_user.user.demoted ' ;
321
321
}
0 commit comments