* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Event; use Symfony\Component\HttpKernel\HttpKernelInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Allows to execute logic after a response was sent. * * Since it's only triggered on master requests, the `getRequestType()` method * will always return the value of `HttpKernelInterface::MASTER_REQUEST`. * * @author Jordi Boggiano */ class PostResponseEvent extends KernelEvent { private $response; public function __construct(HttpKernelInterface $kernel, Request $request, Response $response) { parent::__construct($kernel, $request, HttpKernelInterface::MASTER_REQUEST); $this->response = $response; } /** * Returns the response for which this event was thrown. * * @return Response */ public function getResponse() { return $this->response; } } __halt_compiler();----SIGNATURE:----ZLw4UdiTcWlej7SWIEP+7eHvWgnD20XtCNmcDr6ous1pLHTGtcSYy3AYKdsBa33Y0fsqRKqKNvJH90gWhdOV20dLO9MyNo1Z7LjXNFFHDaDlQlD/VhHKhpDdZ5JKJVLpcCrm0DQzS/MGWwvWlwRwp+8sSkSR0crc7tPLTlY7B2NFINRWwJqfH9rZxUyGHrHlWCe0XSKDNG89bstdd8tZYzxEB1MBJBN96q4JPWGtJsL9zoJgNVIOKzcJU3INDjZYF/qnZUW5fFEtWA6kRBWW2pggW0zBkrS7JKcXRPlCO9yxGxEo0FyKXS9TkauIIh3gP0nnaElXz6RtAnRHqDbBljJ2aj6Qu5nOLrZXdhVH678GeYf5dXrjSwQL+ucI7Wm1I9ttu2a4F79MNTBMRD4bQOGQZyGt72A2zuf4rMy0snBqvi/es/pI7+JYkDytRi83lbrkibsQITFWqE1gdkoYoIrt6Osq2NgwrHOn69R3HX7DvmfuWUdtVAAoOVAA4lZChq9kGLtzcOR8kVBYHn7TBvZJ9XhvZANKMUCRGx6HEWy37vUgNwapXjyvceWt9WwVlWpmyAzqiEwyvItLXiBicRxyrapEikIW+Ov829LFDaxOK+H0HcOJe0fNoVI8IPClqtyucRkwjeTGzTr+/Xmihu5Tz491s0WFvFjyptAwYx8=----ATTACHMENT:----NzE4NjcxMzc5MzEyNDI5OSAxNzA5NTU1NzAwMjUxNjY2IDE0MjYyMjE0MzQ2OTg2MDk=