vendor/symfony/src/Symfony/Component/Form/FormEvents.php
changeset 0 7f95f8617b0b
equal deleted inserted replaced
-1:000000000000 0:7f95f8617b0b
       
     1 <?php
       
     2 
       
     3 /*
       
     4  * This file is part of the Symfony package.
       
     5  *
       
     6  * (c) Fabien Potencier <fabien@symfony.com>
       
     7  *
       
     8  * For the full copyright and license information, please view the LICENSE
       
     9  * file that was distributed with this source code.
       
    10  */
       
    11 
       
    12 namespace Symfony\Component\Form;
       
    13 
       
    14 /**
       
    15  * @author Bernhard Schussek <bernhard.schussek@symfony.com>
       
    16  */
       
    17 final class FormEvents
       
    18 {
       
    19     const PRE_BIND = 'form.pre_bind';
       
    20 
       
    21     const POST_BIND = 'form.post_bind';
       
    22 
       
    23     const PRE_SET_DATA = 'form.pre_set_data';
       
    24 
       
    25     const POST_SET_DATA = 'form.post_set_data';
       
    26 
       
    27     const BIND_CLIENT_DATA = 'form.bind_client_data';
       
    28 
       
    29     const BIND_NORM_DATA = 'form.bind_norm_data';
       
    30 
       
    31     const SET_DATA = 'form.set_data';
       
    32 }