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
Fabien Potencier f5fefeff49 Merge branch '2.7' into 2.8
* 2.7:
  Added 'default' color
  [HttpFoundation] Reload the session after regenerating its id
  [HttpFoundation] Add a test case to confirm a bug in session migration
  [Serializer] Fix ClassMetadata::sleep()
  [2.6] Static Code Analysis for Components and Bundles
  [Finder] Command::addAtIndex() fails with Command instance argument
  [DependencyInjection] Freeze also FrozenParameterBag::remove
  [Twig][Bridge] replaced `extends` with `use` in bootstrap_3_horizontal_layout.html.twig
  fix CS
  fixed CS
  Add a way to reset the singleton
  [Security] allow to use `method` in XML configs
  [Serializer] Fix Groups tests.
  Remove duplicate example
  Remove var not used due to returning early (introduced in 8982c32)
  [Serializer] Fix Groups PHPDoc
  Enhance hhvm test skip message
  fix for legacy asset() with EmptyVersionStrategy
  [Form] Added upgrade notes for #15061
2015-07-09 18:11:14 +02:00
..
Bundle Merge branch '2.3' into 2.6 2015-05-26 14:42:28 -07: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 Make the container considered non-fresh if the environment parameters are changed 2014-12-13 16:43:22 +00:00
Controller [DX] Attempt to improve logging messages with parameters 2015-01-16 16:11:12 +01:00
DataCollector Merge branch '2.6' into 2.7 2015-06-18 15:03:50 +02:00
Debug Silence invasive deprecation warnings, opt-in for warnings 2015-06-08 10:37:21 +01:00
DependencyInjection Silence invasive deprecation warnings, opt-in for warnings 2015-06-08 10:37:21 +01:00
Event Merge branch '2.3' into 2.6 2015-03-22 17:55:57 +01:00
EventListener Silence invasive deprecation warnings, opt-in for warnings 2015-06-08 10:37:21 +01:00
Exception Silence invasive deprecation warnings, opt-in for warnings 2015-06-08 10:37:21 +01:00
Fragment Silence invasive deprecation warnings, opt-in for warnings 2015-06-08 10:37:21 +01:00
HttpCache Merge branch '2.6' into 2.7 2015-06-18 15:03:50 +02:00
Log Silence invasive deprecation warnings, opt-in for warnings 2015-06-08 10:37:21 +01:00
Profiler Merge branch '2.6' into 2.7 2015-06-04 22:11:48 +02:00
Tests Merge branch '2.6' into 2.7 2015-07-09 18:07:40 +02:00
.gitignore Fix gitignore 2014-03-04 18:06:29 +01:00
CHANGELOG.md [HttpKernel] [WebProfilerBundle] added HTTP status to profiler search result 2015-01-25 04:57:33 +01:00
Client.php Merge branch '2.3' into 2.6 2015-02-24 12:52:21 +01:00
composer.json Added CHANGELOG entries, cleanups 2015-06-02 16:18:00 -07:00
HttpKernel.php Revert "[HttpKernel] Throw a LogicException when kernel.exception does not led to a Response" 2015-04-24 09:21:43 +02:00
HttpKernelInterface.php Docblock fixes 2014-11-30 13:33:44 +00:00
Kernel.php bumped Symfony version to 2.7.2 2015-06-12 00:37:12 +02:00
KernelEvents.php Merge branch '2.3' into 2.5 2014-12-22 17:29:52 +01:00
KernelInterface.php Merge branch '2.6' into 2.7 2015-01-05 22:00:14 +01:00
LICENSE Updated copyright to 2015 2015-01-01 13:56:52 +01:00
phpunit.xml.dist [2.3] require-dev PHPUnit bridge 2015-02-24 11:24:26 +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 fixed CS 2012-07-09 14:54:20 +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