Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / http-kernel / KernelEvents.php
index abbbfcc0048b927a81e18ad2682b84d7207d7f59..3e961737b844e2c5461905e3622f00c98850c08e 100644 (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")
      *
      * @var string
      */
@@ -37,11 +35,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")
      *
      * @var string
      */
@@ -52,11 +48,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")
      *
      * @var string
      */
@@ -67,24 +61,34 @@ 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")
      *
      * @var string
      */
     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")
+     *
+     * @var string
+     */
+    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")
      *
      * @var string
      */
@@ -94,10 +98,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")
      *
      * @var string
      */
@@ -108,10 +110,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")
      *
      * @var string
      */