-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathJsfvEvents.php
35 lines (31 loc) · 919 Bytes
/
JsfvEvents.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/*
* This file is part of the JsFormValidationBundle.
*
* (c) Abhoryo <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace APY\JsFormValidationBundle;
final class JsfvEvents
{
/**
* The jsfv.pre_process event is thrown before creating constraints
* from metadata of a from's fields.
* The event listener receives an
* APY\JsFormValidationBundle\Generator\PreProcessEvent instance.
*
* @var string
*/
const preProcess = 'jsfv.pre_process';
/**
* The jsfv.post_process event is thrown after creating constraints
* from metadata of a from's fields.
* The event listener receives an
* APY\JsFormValidationBundle\Generator\PostProcessEvent instance.
*
* @var string
*/
const postProcess = 'jsfv.post_process';
}