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 89e86197c1 minor #17480 Static code analysis (Koc)
This PR was merged into the 2.3 branch.

Discussion
----------

Static code analysis

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

Things that done:
* fix case in method calls
* removed unused imports
* use shorter concat where it possible
* optimize some css
* removed duplicated array keys
* removed redurant return statements
* removed one-time variables
* do not pass arguments that not used in functions

Commits
-------

8db691a Static code analysis
2016-01-27 05:57:57 +01:00
..
Bundle [2.3] Static Code Analysis for Components 2016-01-12 12:31:34 +01:00
CacheClearer [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
CacheWarmer Docblock fixes 2014-11-30 13:33:44 +00:00
Config Make the container considered non-fresh if the environment parameters are changed 2014-12-13 16:43:22 +00:00
Controller Fix docblocks about callables 2015-10-05 19:32:31 +02:00
DataCollector remove api tags from code 2015-09-28 19:11:22 +02:00
Debug bug #14633 [2.3][EventDispatcher] make listeners removable from an executed listener (xabbuh) 2015-05-14 19:40:02 +02:00
DependencyInjection [DependencyInjection] improved a comment for reading fluency 2015-09-30 09:41:34 +02:00
Event Fix docblocks about callables 2015-10-05 19:32:31 +02:00
EventListener Fix missing _route parameter notice in RouterListener logging case 2015-07-29 09:46:44 +02:00
Exception Fix docblocks to comments 2015-01-30 10:53:48 +01:00
Fragment Fixes various phpdoc and coding standards. 2015-01-02 09:58:20 +01:00
HttpCache minor #17480 Static code analysis (Koc) 2016-01-27 05:57:57 +01:00
Log remove api tags from code 2015-09-28 19:11:22 +02:00
Profiler Static code analysis 2016-01-25 19:00:36 +02:00
Tests Fixer findings. 2016-01-22 08:50:32 +01:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [2.3] Cleanup deprecations 2015-01-03 10:22:29 +01:00
Client.php Clean useless deprecation silencing 2015-12-10 15:12:08 +01:00
composer.json added the new Composer exclude-from-classmap option 2015-10-30 12:48:51 -07:00
HttpKernel.php remove api tags from code 2015-09-28 19:11:22 +02:00
HttpKernelInterface.php remove api tags from code 2015-09-28 19:11:22 +02:00
Kernel.php Add gc_mem_caches() call for PHP7 after itoken_get_all() as new memory manager will not release small buckets to OS automatically 2016-01-15 10:01:44 +01:00
KernelEvents.php remove api tags from code 2015-09-28 19:11:22 +02:00
KernelInterface.php remove api tags from code 2015-09-28 19:11:22 +02:00
LICENSE Update copyright year 2016-01-01 23:53:47 -03: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 minor #17282 [2.3] Static Code Analysis for Components (kalessil) 2016-01-12 12:31:36 +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 install
$ phpunit