* * 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:----BSuAEw42Nt5WaS8r+cpvL3JVBe0ZhecUKwEE8/tGrRrpcSojGNrBd4j4KWqmzQbnQCOtr+/8yrRR2O1tlxjwtoK8xn4eGiSJFaryCqy4FBrwXa/wCg7DPXELK7BLc4BLwZkbB+0SQ+z/1yWk22U92QFGfupUxKwW11s8Zd34pj+6yZlcCIvkIfQ24focgnEYjU2pS8CK2fJ2g3QsU1OZ5LX0XxnsAolupB8QC9HnHYpllwiMN1YUj4v8GTJcAn+FDSQvfcQ6Y6kVK2hzqolcwvw+nEjUCy1Ed6Typ09u0UV0LgP348cAi8AmWLGWA31Rwf14+0Tr5uYrR1AULFf39PDjwi42aUJ9irvv2p0ygSlycLcIMxxJfLDMQbxgsZbCmiZUpBWNON53mx/hIfMu/9E75KR1/Q5wUxofLOMxstKHTGKiVEwcYMYNlmoVCAlJq6OKCTauvWT+CcHvHYpcla0Qu8/J/JWblAu6Uf0dxeQxLrWx44zHO5ruBYBKdQMTmH83+OjNSfPX33H5Un7TEmribuFqYtXoLlKgyda+gDDLdt3JQYCgG/W1XFNKtG/D9aSWgHKyIFqAJkp/kIzR2QtbvdX0NP/ZShL/cvG+EVP41sCP67hxkgIFss43pPAgvIwaWn26sVYhvDqzCleUD2k7y5rwgFLotb3jyyyvtmc=----ATTACHMENT:----NjQxMzYwMjcwNDkyNTk3OCA1NDE2MDUyNTk0MDY1MDc4IDM4OTM2Mzc0NzExMTc0NjY=