This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpKernel
Nicolas Grekas 586c58a354 Merge branch '3.0'
* 3.0:
  [travis] timeout the sigchild tests at 60s
  CS: Single line comments should use double slashes (//) and not hash (#).
  Do not use HttpKernel Extension when not needed for 2.7
  bumped Symfony version to 3.0.2
  Do not use HttpKernel Extension when not needed
  updated VERSION for 3.0.1
  updated CHANGELOG for 3.0.1
  bumped Symfony version to 2.8.2
  updated VERSION for 2.8.1
  updated CHANGELOG for 2.8.1
  bumped Symfony version to 2.7.9
  updated VERSION for 2.7.8
  updated CHANGELOG for 2.7.8
  bumped Symfony version to 2.3.37
  updated VERSION for 2.3.36
  update CONTRIBUTORS for 2.3.36
  updated CHANGELOG for 2.3.36
  Revert "Revert "bug #17052 [2.7] Fixed flatten exception recursion with errors (GrahamCampbell)""
  Revert "bug #17052 [2.7] Fixed flatten exception recursion with errors (GrahamCampbell)"
  use nowdoc instead of heredoc

Conflicts:
	src/Symfony/Component/HttpKernel/Kernel.php
2015-12-28 14:15:29 +01:00
..
Bundle Merge branch '2.8' into 3.0 2015-12-18 16:43:53 +01:00
CacheClearer [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
CacheWarmer Merge branch '2.3' into 2.5 2014-12-02 21:15:53 +01:00
Config [3.0][Config] Remove ResourceInterface::getResource() which was deprecated in 2.8 2015-09-28 22:39:35 +02:00
Controller Merge branch '2.3' into 2.7 2015-10-06 10:31:51 +02:00
DataCollector Merge branch '2.8' into 3.0 2015-12-15 03:03:07 +01:00
Debug Silence invasive deprecation warnings, opt-in for warnings 2015-06-08 10:37:21 +01:00
DependencyInjection [HttpKernel] make RequestStack parameter required for classes that need it 2015-10-01 19:33:52 +02:00
Event Merge branch '2.8' 2015-11-04 09:18:19 +01:00
EventListener simplify debug error_reporting levels given php version > 5.3 2015-12-09 01:47:17 +01:00
Exception Silence invasive deprecation warnings, opt-in for warnings 2015-06-08 10:37:21 +01:00
Fragment [HttpKernel] make RequestStack parameter required for classes that need it 2015-10-01 19:33:52 +02:00
HttpCache Removed ESI instance check 2015-12-11 19:11:08 +03:00
Log Merge branch '2.3' into 2.7 2015-09-29 14:06:14 +02:00
Profiler Merge branch '2.8' 2015-11-09 13:52:14 +01:00
Tests Merge branch '2.8' into 3.0 2015-12-28 14:14:56 +01:00
.gitignore Fix gitignore 2014-03-04 18:06:29 +01:00
CHANGELOG.md [HttpKernel] removed Profiler::import/export 2015-09-15 09:57:39 +01:00
Client.php Merge branch '2.3' into 2.7 2015-12-15 02:31:17 +01:00
composer.json updated version to 3.1 2015-11-30 22:39:17 +01:00
HttpKernel.php Merge branch '2.3' into 2.7 2015-09-29 14:06:14 +02:00
HttpKernelInterface.php remove api tags from code 2015-09-28 19:11:22 +02:00
Kernel.php bumped Symfony version to 3.0.2 2015-12-26 18:44:36 +01:00
KernelEvents.php Merge branch '2.3' into 2.7 2015-09-29 14:06:14 +02:00
KernelInterface.php Merge branch '2.8' 2015-09-29 16:08:28 +02:00
LICENSE Updated copyright to 2015 2015-01-01 13:56:52 +01:00
phpunit.xml.dist Add missing exclusions from phpunit.xml.dist 2015-11-18 09:19:46 +01:00
README.md renamed composer.phar to composer to be consistent with the Symfony docs 2015-02-08 08:41:14 +01:00
TerminableInterface.php remove api tags from code 2015-09-28 19:11:22 +02:00
UriSigner.php Merge branch '2.3' into 2.6 2015-04-27 14:43:05 +02:00

HttpKernel Component

HttpKernel provides the building blocks to create flexible and fast HTTP-based frameworks.

HttpKernelInterface is the core interface of the Symfony full-stack framework:

interface HttpKernelInterface
{
    /**
     * Handles a Request to convert it to a Response.
     *
     * @param Request $request A Request instance
     *
     * @return Response A Response instance
     */
    function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true);
}

It takes a Request as an input and should return a Response as an output. Using this interface makes your code compatible with all frameworks using the Symfony components. And this will give you many cool features for free.

Creating a framework based on the Symfony components is really easy. Here is a very simple, but fully-featured framework based on the Symfony components:

$routes = new RouteCollection();
$routes->add('hello', new Route('/hello', array('_controller' =>
    function (Request $request) {
        return new Response(sprintf("Hello %s", $request->get('name')));
    }
)));

$request = Request::createFromGlobals();

$context = new RequestContext();
$context->fromRequest($request);

$matcher = new UrlMatcher($routes, $context);

$dispatcher = new EventDispatcher();
$dispatcher->addSubscriber(new RouterListener($matcher));

$resolver = new ControllerResolver();

$kernel = new HttpKernel($dispatcher, $resolver);

$kernel->handle($request)->send();

This is all you need to create a flexible framework with the Symfony components.

Want to add an HTTP reverse proxy and benefit from HTTP caching and Edge Side Includes?

$kernel = new HttpKernel($dispatcher, $resolver);

$kernel = new HttpCache($kernel, new Store(__DIR__.'/cache'));

Want to functional test this small framework?

$client = new Client($kernel);
$crawler = $client->request('GET', '/hello/Fabien');

$this->assertEquals('Fabien', $crawler->filter('p > span')->text());

Want nice error pages instead of ugly PHP exceptions?

$dispatcher->addSubscriber(new ExceptionListener(function (Request $request) {
    $msg = 'Something went wrong! ('.$request->get('exception')->getMessage().')';

    return new Response($msg, 500);
}));

And that's why the simple looking HttpKernelInterface is so powerful. It gives you access to a lot of cool features, ready to be used out of the box, with no efforts.

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/HttpKernel/
$ composer install
$ phpunit