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
Brian Freytag a7ac100c45 Remove LOCK_EX That Breaks Cache Usage on NFS
This removes the exclusive lock that was introduced in #24960.

NFS File Systems do not support exclusive locking, and generates a lot
of errors every time you try to do anything with che cache.
2017-12-05 10:17:41 -05:00
..
Bundle Merge branch '3.3' into 3.4 2017-10-24 16:12:06 +02:00
CacheClearer Merge branch '3.3' into 3.4 2017-10-24 16:12:06 +02:00
CacheWarmer doc fixes 2017-09-29 11:41:38 +02:00
Config Merge branch '3.3' into 3.4 2017-10-02 08:49:52 +02:00
Controller [DI] Add missing deprecation when fetching private services from ContainerBuilder 2017-12-01 16:10:27 +01:00
ControllerMetadata [HttpKernel] Clean ArgumentMetadataFactory::getType() 2016-10-06 11:12:13 +02:00
DataCollector [HttpKernel] Fix issue when resetting DumpDataCollector 2017-11-30 20:02:12 +01:00
Debug Merge branch '3.2' into 3.3 2017-06-02 11:51:43 +02:00
DependencyInjection remove services resetter even when it's an alias 2017-11-15 18:30:56 +01:00
Event [3.3] More docblock fixes 2017-11-07 15:16:22 +01:00
EventListener [HttpFoundation] Add Session::isEmpty(), fix MockFileSessionStorage to behave like the native one 2017-11-30 15:56:21 +01:00
Exception Merge branch '2.8' into 3.3 2017-10-02 08:42:24 +02:00
Fragment [HttpKernel] Arrays with scalar values passed to ESI fragment renderer throw deprecation notice 2017-11-29 10:42:06 +01:00
HttpCache fixed CS 2017-11-10 11:30:00 -08:00
Log [HttpKernel] Read $_ENV when checking SHELL_VERBOSITY 2017-11-26 18:11:23 +01:00
Profiler Merge branch '3.3' into 3.4 2017-11-05 17:10:10 +01:00
Resources Show welcome message if no routing configuration could be found 2017-10-02 19:25:29 -04:00
Tests bug #25255 [Console][DI] Fail gracefully (nicolas-grekas) 2017-12-02 15:04:03 -08:00
.gitignore Fix gitignore 2014-03-04 18:06:29 +01:00
CHANGELOG.md Reset profiler. 2017-10-05 12:20:28 +02:00
Client.php Merge branch '3.3' into 3.4 2017-10-24 16:12:06 +02:00
composer.json Merge branch '3.3' into 3.4 2017-10-10 12:38:39 +02:00
HttpKernel.php [DI] minor docblock fixes 2017-10-24 13:40:19 +02:00
HttpKernelInterface.php remove api tags from code 2015-09-28 19:11:22 +02:00
Kernel.php Remove LOCK_EX That Breaks Cache Usage on NFS 2017-12-05 10:17:41 -05:00
KernelEvents.php Merge branch '2.8' into 3.3 2017-11-05 16:47:03 +01:00
KernelInterface.php Merge branch '3.3' into 3.4 2017-10-24 16:12:06 +02:00
LICENSE updated LICENSE year 2017-01-02 12:30:00 -08:00
phpunit.xml.dist fail when detecting risky tests 2017-04-12 09:39:27 +02: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 Merge branch '2.8' into 3.3 2017-10-18 08:00:09 -07: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