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 f1f657a68d Merge branch '2.3' into 2.5
* 2.3:
  fixed id for translations
  bumped Symfony version to 2.3.26
  Dutch translation for invalid charset message
  German translation for invalid charset message
  Add a Slovenian translation for invalid charset message
  Add a Polish translation.
  Test lowest deps with latest 5.3
  updated VERSION for 2.3.25
  update CONTRIBUTORS for 2.3.25
  updated CHANGELOG for 2.3.25
  Fix docblocks to comments
  [Validator] reject ill-formed strings
  [Validator] drop grapheme_strlen in LengthValidator
  Unique Entity Validator Invalid Value
  [FrameworkBundle][config] allow multiple fallback locales.

Conflicts:
	src/Symfony/Bridge/Doctrine/Tests/Validator/Constraints/UniqueEntityValidatorTest.php
	src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php
	src/Symfony/Component/HttpKernel/Kernel.php
	src/Symfony/Component/Validator/Resources/translations/validators.de.xlf
	src/Symfony/Component/Validator/Resources/translations/validators.en.xlf
	src/Symfony/Component/Validator/Resources/translations/validators.fr.xlf
	src/Symfony/Component/Validator/Resources/translations/validators.nl.xlf
	src/Symfony/Component/Validator/Resources/translations/validators.pl.xlf
	src/Symfony/Component/Validator/Resources/translations/validators.sl.xlf
	src/Symfony/Component/Validator/Tests/Constraints/LengthValidatorTest.php
2015-02-01 10:36:16 +01:00
..
Bundle Merge branch '2.3' into 2.4 2014-04-18 22:37:09 +02: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 Merge branch '2.3' into 2.5 2015-01-03 09:01:13 +01:00
DataCollector Merge branch '2.3' into 2.5 2015-01-03 16:23:51 +01:00
Debug [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
DependencyInjection [EventDispatcher] Add missing checks to RegisterListenersPass 2015-01-16 15:48:25 +01:00
Event Merge branch '2.3' into 2.5 2014-12-22 17:29:52 +01:00
EventListener Merge branch '2.3' into 2.5 2015-01-03 16:23:51 +01:00
Exception Merge branch '2.3' into 2.5 2015-02-01 10:36:16 +01:00
Fragment Merge branch '2.3' into 2.5 2015-01-03 09:01:13 +01:00
HttpCache Merge branch '2.3' into 2.5 2014-12-22 17:29:52 +01:00
Log [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
Profiler Merge branch '2.3' into 2.5 2014-12-22 17:29:52 +01:00
Tests Merge branch '2.3' into 2.5 2015-01-25 09:45:13 +01:00
.gitignore Fix gitignore 2014-03-04 18:06:29 +01:00
CHANGELOG.md Merge branch '2.3' into 2.5 2015-01-03 16:23:51 +01:00
Client.php Merge branch '2.3' into 2.5 2015-01-03 09:01:13 +01:00
composer.json [2.3] Fix lowest deps 2015-01-03 19:20:28 +01:00
HttpKernel.php Merge branch '2.3' into 2.5 2014-12-22 17:29:52 +01:00
HttpKernelInterface.php Docblock fixes 2014-11-30 13:33:44 +00:00
Kernel.php bumped Symfony version to 2.3.26 2015-02-01 06:48:52 +01:00
KernelEvents.php Merge branch '2.3' into 2.5 2014-12-22 17:29:52 +01:00
KernelInterface.php Escape annotations in comments, refs #13089. 2015-01-04 19:14:50 +01:00
LICENSE Updated copyright to 2015 2015-01-01 13:56:52 +01:00
phpunit.xml.dist [Tests] Silenced all deprecations in tests for 2.3 2014-12-18 20:00:19 +01:00
README.md Docblock fixes 2014-11-30 13:33:44 +00:00
TerminableInterface.php fixed CS 2012-07-09 14:54:20 +02:00
UriSigner.php Merge branch '2.3' into 2.5 2015-01-03 11:26:24 +01: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.phar install
$ phpunit