* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * HttpKernelInterface handles a Request to convert it to a Response. * * @author Fabien Potencier */ interface HttpKernelInterface { const MASTER_REQUEST = 1; const SUB_REQUEST = 2; /** * Handles a Request to convert it to a Response. * * When $catch is true, the implementation must catch all exceptions * and do its best to convert them to a Response instance. * * @param Request $request A Request instance * @param int $type The type of the request * (one of HttpKernelInterface::MASTER_REQUEST or HttpKernelInterface::SUB_REQUEST) * @param bool $catch Whether to catch exceptions or not * * @return Response A Response instance * * @throws \Exception When an Exception occurs during processing */ public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true); } __halt_compiler();----SIGNATURE:----ul0aY5xrOA+QF5oKluA91v4jMpUB3n9Lik/q8MgyTdeGS7aQnGg3BOPBrHGn828I/OmZ2KDHjtoBp0UqgP1yG7OqH/wuIjd8E12X0cRSqZGlZ1rElY24355FnuW4AGu1RTG0ssWQPE9ezSSWjpA42sALVj+JUOXkGAryVXkTmQKy2jAW1k33OTWlBKTths3lYfL8IEXg9C4TZrfAmHN1AglKQcGD16ap8J/Yg9i8UBkmlMY0ddRaOD6iL7/jn4Spl0X4ibHRLhYnoTu9G8QgzsZhR5deVElt33kXQ4+gp942/Qosa1xuRU7WzNdgRzd51UErIxlIHYj4zVbMDbO69eKUdEMMIEB2NfxdG3mJC0SJYfhmY8mdjNkVf4/xG6JdgNvYJ2rKnkLvkX1TOtRsls3hAnYSjn8XYJ296DoS3Zqjdhu+7tQrITE1X/7ajH+vX6b0TAVE9xLrpoXZeo9g10f6RCtUz4Kivb4gZnu2z/wDW6vlyLTrOL8lZqbyO33EIE4Vi4md+U0b4yHvfImwSu6j8+46qbMxRPjk9PGL5seKCXIXpGLEsG0IvJBPtEF8j4E+FYU/E17/yUBIOE5TOwdSjlmCZkehEfwfTD1id1VrXEvjnwXoGZo2k4m2omwz/65KcC1QreB7Z1gURnESSEpTqORIejZcwzvi2OiBWL0=----ATTACHMENT:----NDY2MjIwMTIyMDkyMDc5NiA5NzQ4MzY5ODkxMDk1NjU5IDk4NzMwMDM4MDExMTg3MQ==