Skip to content

Commit

Permalink
Add machine readable events
Browse files Browse the repository at this point in the history
  • Loading branch information
dawehner authored and fabpot committed Nov 16, 2014
1 parent 5decdd7 commit ace9a22
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Symfony/Component/Console/ConsoleEvents.php
Expand Up @@ -26,6 +26,8 @@ final class ConsoleEvents
* The event listener method receives a Symfony\Component\Console\Event\ConsoleCommandEvent
* instance.
*
* @Event
*
* @var string
*/
const COMMAND = 'console.command';
Expand All @@ -37,6 +39,8 @@ final class ConsoleEvents
* The event listener method receives a Symfony\Component\Console\Event\ConsoleTerminateEvent
* instance.
*
* @Event
*
* @var string
*/
const TERMINATE = 'console.terminate';
Expand All @@ -49,6 +53,8 @@ final class ConsoleEvents
* a Symfony\Component\Console\Event\ConsoleExceptionEvent
* instance.
*
* @Event
*
* @var string
*/
const EXCEPTION = 'console.exception';
Expand Down
21 changes: 21 additions & 0 deletions src/Symfony/Component/Form/FormEvents.php
Expand Up @@ -15,31 +15,52 @@
*/
final class FormEvents
{
/**
* @Event
*/
const PRE_SUBMIT = 'form.pre_bind';

/**
* @Event
*/
const SUBMIT = 'form.bind';

/**
* @Event
*/
const POST_SUBMIT = 'form.post_bind';

/**
* @Event
*/
const PRE_SET_DATA = 'form.pre_set_data';

/**
* @Event
*/
const POST_SET_DATA = 'form.post_set_data';

/**
* @deprecated Deprecated since version 2.3, to be removed in 3.0. Use
* {@link PRE_SUBMIT} instead.
*
* @Event
*/
const PRE_BIND = 'form.pre_bind';

/**
* @deprecated Deprecated since version 2.3, to be removed in 3.0. Use
* {@link SUBMIT} instead.
*
* @Event
*/
const BIND = 'form.bind';

/**
* @deprecated Deprecated since version 2.3, to be removed in 3.0. Use
* {@link POST_SUBMIT} instead.
*
* @Event
*/
const POST_BIND = 'form.post_bind';

Expand Down
12 changes: 12 additions & 0 deletions src/Symfony/Component/HttpKernel/KernelEvents.php
Expand Up @@ -29,6 +29,8 @@ final class KernelEvents
* receives a Symfony\Component\HttpKernel\Event\GetResponseEvent
* instance.
*
* @Event
*
* @var string
*
* @api
Expand All @@ -43,6 +45,8 @@ final class KernelEvents
* a Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent
* instance.
*
* @Event
*
* @var string
*
* @api
Expand All @@ -58,6 +62,8 @@ final class KernelEvents
* Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent
* instance.
*
* @Event
*
* @var string
*
* @api
Expand All @@ -72,6 +78,8 @@ final class KernelEvents
* request. The event listener method receives a
* Symfony\Component\HttpKernel\Event\FilterControllerEvent instance.
*
* @Event
*
* @var string
*
* @api
Expand All @@ -86,6 +94,8 @@ final class KernelEvents
* replied. The event listener method receives a
* Symfony\Component\HttpKernel\Event\FilterResponseEvent instance.
*
* @Event
*
* @var string
*
* @api
Expand All @@ -99,6 +109,8 @@ final class KernelEvents
* The event listener method receives a
* Symfony\Component\HttpKernel\Event\PostResponseEvent instance.
*
* @Event
*
* @var string
*/
const TERMINATE = 'kernel.terminate';
Expand Down
4 changes: 4 additions & 0 deletions src/Symfony/Component/Security/Http/SecurityEvents.php
Expand Up @@ -20,6 +20,8 @@ final class SecurityEvents
* The event listener method receives a
* Symfony\Component\Security\Http\Event\InteractiveLoginEvent instance.
*
* @Event
*
* @var string
*/
const INTERACTIVE_LOGIN = 'security.interactive_login';
Expand All @@ -31,6 +33,8 @@ final class SecurityEvents
* The event listener method receives a
* Symfony\Component\Security\Http\Event\SwitchUserEvent instance.
*
* @Event
*
* @var string
*/
const SWITCH_USER = 'security.switch_user';
Expand Down

0 comments on commit ace9a22

Please sign in to comment.