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 cf57007425 Merge branch '4.3' into 4.4
* 4.3:
  [Intl] use strict comparisons
  Fix s-maxage=3 transient test
2019-08-08 19:11:47 +02:00
..
Bundle [Bundles] Rename getPublicPath() as getPublicDir() 2019-07-12 07:45:28 +03:00
CacheClearer fixed CS 2019-01-16 19:35:49 +01:00
CacheWarmer clarify error handler restoring process 2019-07-26 15:02:58 +02:00
Config removed unneeded phpdocs 2019-08-06 08:19:29 +02:00
Controller Remove unneeded phpdocs 2019-08-08 11:37:48 +02:00
ControllerMetadata use proper return types in ErrorHandler and ArgumentResolver 2019-06-24 02:04:42 +01:00
DataCollector Turned return type annotations of private methods into php return types. 2019-08-07 16:19:54 +02:00
Debug Merge branch '3.4' into 4.3 2019-07-29 18:04:53 +02:00
DependencyInjection Turned return type annotations of private methods into php return types. 2019-08-07 16:19:54 +02:00
Event Remove unneeded phpdocs 2019-08-08 11:37:48 +02:00
EventListener Merge branch '4.3' into 4.4 2019-08-08 17:13:31 +02:00
Exception [HttpKernel] change $previous argument for HttpException to \Throwable 2019-03-30 08:30:07 +01:00
Fragment cleanup remaining param and internal Intl FulLTransformer 2019-08-08 16:35:53 +02:00
HttpCache Merge branch '4.3' into 4.4 2019-08-08 11:18:35 +02:00
Log Merge branch '3.4' into 4.2 2019-03-10 11:08:12 +01:00
Profiler Merge branch '4.3' into 4.4 2019-08-08 17:13:31 +02:00
Resources Optimize SVGs 2019-04-11 11:48:14 +02:00
Tests Merge branch '4.3' into 4.4 2019-08-08 19:11:47 +02:00
.gitignore
CHANGELOG.md fix some deprecations and add upgrade instructions 2019-07-14 10:01:32 +02:00
Client.php Remove unneeded phpdocs 2019-08-08 11:37:48 +02:00
composer.json Add a new ErrorHandler component (mirror of the Debug component) 2019-07-18 09:54:35 +02:00
HttpClientKernel.php [HttpClient] log requests, responses and pushes when they happen 2019-04-05 13:59:27 +02:00
HttpKernel.php minor #33018 remove some more useless phpdocs (Tobion) 2019-08-08 11:14:40 +02:00
HttpKernelBrowser.php [HttpKernel] Fix missing use for request and response classes 2019-06-06 17:13:36 +03:00
HttpKernelInterface.php removed unneeded phpdocs 2019-08-06 08:19:29 +02:00
Kernel.php Remove unneeded phpdocs 2019-08-08 11:37:48 +02:00
KernelEvents.php [EventDispatcher] swap arguments of dispatch() to allow registering events by FQCN 2019-03-14 08:32:46 +01:00
KernelInterface.php Drop more usages of Serializable 2019-03-04 09:45:35 +01:00
LICENSE update year in license files 2019-01-01 14:45:19 +01:00
phpunit.xml.dist Bump phpunit XSD version to 5.2 2018-11-11 12:18:13 +01:00
README.md Updated all the README files 2016-03-04 08:12:06 +01:00
RebootableInterface.php [HttpKernel][FrameworkBundle] Add RebootableInterface, fix and un-deprecate cache:clear with warmup 2017-08-18 13:51:16 +02:00
TerminableInterface.php [DI] minor docblock fixes 2017-10-24 13:40:19 +02:00
UriSigner.php add parameter type declarations to private methods 2019-07-31 20:51:46 +02:00

HttpKernel Component

The HttpKernel component provides a structured process for converting a Request into a Response by making use of the EventDispatcher component. It's flexible enough to create a full-stack framework (Symfony), a micro-framework (Silex) or an advanced CMS system (Drupal).

Resources