* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel; /** * Contains all events thrown in the HttpKernel component. * * @author Bernhard Schussek */ final class KernelEvents { /** * The REQUEST event occurs at the very beginning of request * dispatching. * * This event allows you to create a response for a request before any * other code in the framework is executed. * * @Event("Symfony\Component\HttpKernel\Event\GetResponseEvent") */ const REQUEST = 'kernel.request'; /** * 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. * * @Event("Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent") */ const EXCEPTION = 'kernel.exception'; /** * The VIEW event occurs when the return value of a controller * is not a Response instance. * * This event allows you to create a response for the return value of the * controller. * * @Event("Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent") */ const VIEW = 'kernel.view'; /** * The CONTROLLER event occurs once a controller was found for * handling a request. * * This event allows you to change the controller that will handle the * request. * * @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. * * @Event("Symfony\Component\HttpKernel\Event\FilterResponseEvent") */ const RESPONSE = 'kernel.response'; /** * The TERMINATE event occurs once a response was sent. * * This event allows you to run expensive post-response jobs. * * @Event("Symfony\Component\HttpKernel\Event\PostResponseEvent") */ const TERMINATE = 'kernel.terminate'; /** * The FINISH_REQUEST event occurs when a response was generated for a request. * * This event allows you to reset the global and environmental state of * the application, when it was changed during the request. * * @Event("Symfony\Component\HttpKernel\Event\FinishRequestEvent") */ const FINISH_REQUEST = 'kernel.finish_request'; } __halt_compiler();----SIGNATURE:----EHJ/QGnIf+Z/gbQR/2TJHuP3hUu3sF0XPEmxDpV+lWghmSW53ba3qgo4F+O0NKtjt6Upl5188hg3nnr5J2dh6yB+3Vxxg0lVT6aYgiBRQ4co/O4pI/wbQaiLnWGI+DmJXqGU8Ng5q7TD0Tg8emW5X4z6uHBbnwDl6E93+AK1TplgJRZ8v/6rcG+AvpoijFxw/Sowtzeg+kK8DzzrADJz/GSFrQiRcNys03pfOCqAEBmtWXbfABetcKVXvYUknWy8kbe/Zv9zRQMWT7Iqn2D+RSjFYY+j4iZ1CZovix+fQi9lqJkTQr7uizH77/J2abf5kI9MO+gkxdGYw9zWN+rJSNyKodGi+6WRRujFleKw3aT/ZRhwsyOqzdTFQ8A3IJIOWTNdEs8dqG9dg13d7bMgr5h7q9iI1deLo28KvCnNPkc58EefdcJ/m8yHK28W0xBdBdr38ZXaGTvnwMCpXBQ1QSoR31NSr4RihFtUCkyA+3VA2QzV56zqhkggLnx1UCTD3DyYDxeP4iPm7p1gm+XknExqh8sRsmFrRJnvLgT5vubI9o3Kl7QJ670fjfBG2Z2dgKHGZ0H0IOs0/QrTyPQh6BgPmCfFBx7R9e1CsPmUouk5XziQhwL4C/9aT9I00PU+TFQC+s0PJywgpax+LMn5ooK8WrP3xIuxHRZ98kEwZmE=----ATTACHMENT:----ODEyOTIwMTkyMDYxNDI1NyAxMTI2ODA1MzM3OTQyMjI0IDI1MDI1Mjk1NjY4OTI3MTA=