interface HttpKernelInterface
HttpKernelInterface handles a Request to convert it to a Response.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- interface \Symfony\Component\HttpKernel\HttpKernelInterface
Expanded class hierarchy of HttpKernelInterface
All classes that implement HttpKernelInterface
33 files declare their use of HttpKernelInterface
- AbstractSurrogate.php in vendor/
symfony/ http-kernel/ HttpCache/ AbstractSurrogate.php - AjaxPageState.php in core/
lib/ Drupal/ Core/ StackMiddleware/ AjaxPageState.php - BanMiddleware.php in core/
modules/ ban/ src/ BanMiddleware.php - BigPipe.php in core/
modules/ big_pipe/ src/ Render/ BigPipe.php - CommentController.php in core/
modules/ comment/ src/ Controller/ CommentController.php
File
-
vendor/
symfony/ http-kernel/ HttpKernelInterface.php, line 22
Namespace
Symfony\Component\HttpKernelView source
interface HttpKernelInterface {
public const MAIN_REQUEST = 1;
public 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 int $type The type of the request
* (one of HttpKernelInterface::MAIN_REQUEST or HttpKernelInterface::SUB_REQUEST)
* @param bool $catch Whether to catch exceptions or not
*
* @throws \Exception When an Exception occurs during processing
*/
public function handle(Request $request, int $type = self::MAIN_REQUEST, bool $catch = true) : Response;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
HttpKernelInterface::handle | public | function | Handles a Request to convert it to a Response. | 17 |
HttpKernelInterface::MAIN_REQUEST | public | constant | ||
HttpKernelInterface::SUB_REQUEST | public | constant |