interface HttpKernelInterface

HttpKernelInterface handles a Request to convert it to a Response.

@author Fabien Potencier <fabien@symfony.com>

@api

Hierarchy

Expanded class hierarchy of HttpKernelInterface

All classes that implement HttpKernelInterface

50 files declare their use of HttpKernelInterface
comment.module in drupal/core/modules/comment/comment.module
Enables users to comment on published content.
ContainerAwareHttpKernel.php in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DependencyInjection/ContainerAwareHttpKernel.php
ContainerAwareHttpKernelTest.php in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/DependencyInjection/ContainerAwareHttpKernelTest.php
DialogController.php in drupal/core/lib/Drupal/Core/Controller/DialogController.php
Contains \Drupal\Core\Controller\DialogController.
DisplayPageTest.php in drupal/core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayPageTest.php
Contains \Drupal\views\Tests\Plugin\DisplayPageTest.

... See full list

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/HttpKernelInterface.php, line 24

Namespace

Symfony\Component\HttpKernel
View source
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 integer $type    The type of the request
   *                          (one of HttpKernelInterface::MASTER_REQUEST or HttpKernelInterface::SUB_REQUEST)
   * @param Boolean $catch Whether to catch exceptions or not
   *
   * @return Response A Response instance
   *
   * @throws \Exception When an Exception occurs during processing
   *
   * @api
   */
  public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true);

}

Members

Namesort descending Modifiers Type Description Overrides
HttpKernelInterface::handle public function Handles a Request to convert it to a Response. 5
HttpKernelInterface::MASTER_REQUEST constant
HttpKernelInterface::SUB_REQUEST constant