Augmentation vers version 3.3.0

This commit is contained in:
Gauvain Boiché
2020-03-31 15:31:03 +02:00
parent d926806907
commit a1864c0414
2618 changed files with 406015 additions and 31377 deletions

View File

@@ -23,11 +23,9 @@ final class KernelEvents
* dispatching.
*
* This event allows you to create a response for a request before any
* other code in the framework is executed. The event listener method
* receives a Symfony\Component\HttpKernel\Event\GetResponseEvent
* instance.
* other code in the framework is executed.
*
* @Event
* @Event("Symfony\Component\HttpKernel\Event\GetResponseEvent")
*/
const REQUEST = 'kernel.request';
@@ -35,11 +33,9 @@ final class KernelEvents
* The EXCEPTION event occurs when an uncaught exception appears.
*
* This event allows you to create a response for a thrown exception or
* to modify the thrown exception. The event listener method receives
* a Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent
* instance.
* to modify the thrown exception.
*
* @Event
* @Event("Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent")
*/
const EXCEPTION = 'kernel.exception';
@@ -48,11 +44,9 @@ final class KernelEvents
* is not a Response instance.
*
* This event allows you to create a response for the return value of the
* controller. The event listener method receives a
* Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent
* instance.
* controller.
*
* @Event
* @Event("Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent")
*/
const VIEW = 'kernel.view';
@@ -61,22 +55,30 @@ final class KernelEvents
* handling a request.
*
* This event allows you to change the controller that will handle the
* request. The event listener method receives a
* Symfony\Component\HttpKernel\Event\FilterControllerEvent instance.
* request.
*
* @Event
* @Event("Symfony\Component\HttpKernel\Event\FilterControllerEvent")
*/
const CONTROLLER = 'kernel.controller';
/**
* The CONTROLLER_ARGUMENTS event occurs once controller arguments have been resolved.
*
* This event allows you to change the arguments that will be passed to
* the controller.
*
* @Event("Symfony\Component\HttpKernel\Event\FilterControllerArgumentsEvent")
*/
const CONTROLLER_ARGUMENTS = 'kernel.controller_arguments';
/**
* The RESPONSE event occurs once a response was created for
* replying to a request.
*
* This event allows you to modify or replace the response that will be
* replied. The event listener method receives a
* Symfony\Component\HttpKernel\Event\FilterResponseEvent instance.
* replied.
*
* @Event
* @Event("Symfony\Component\HttpKernel\Event\FilterResponseEvent")
*/
const RESPONSE = 'kernel.response';
@@ -84,10 +86,8 @@ final class KernelEvents
* The TERMINATE event occurs once a response was sent.
*
* This event allows you to run expensive post-response jobs.
* The event listener method receives a
* Symfony\Component\HttpKernel\Event\PostResponseEvent instance.
*
* @Event
* @Event("Symfony\Component\HttpKernel\Event\PostResponseEvent")
*/
const TERMINATE = 'kernel.terminate';
@@ -96,10 +96,8 @@ final class KernelEvents
*
* This event allows you to reset the global and environmental state of
* the application, when it was changed during the request.
* The event listener method receives a
* Symfony\Component\HttpKernel\Event\FinishRequestEvent instance.
*
* @Event
* @Event("Symfony\Component\HttpKernel\Event\FinishRequestEvent")
*/
const FINISH_REQUEST = 'kernel.finish_request';
}