├── Attribute ├── AsController.php ├── AsTargetedValueResolver.php ├── Cache.php ├── MapDateTime.php ├── MapQueryParameter.php ├── MapQueryString.php ├── MapRequestPayload.php ├── MapUploadedFile.php ├── ValueResolver.php ├── WithHttpStatus.php └── WithLogLevel.php ├── Bundle ├── AbstractBundle.php ├── Bundle.php ├── BundleExtension.php └── BundleInterface.php ├── CHANGELOG.md ├── CacheClearer ├── CacheClearerInterface.php ├── ChainCacheClearer.php └── Psr6CacheClearer.php ├── CacheWarmer ├── CacheWarmer.php ├── CacheWarmerAggregate.php ├── CacheWarmerInterface.php └── WarmableInterface.php ├── Config └── FileLocator.php ├── Controller ├── ArgumentResolver.php ├── ArgumentResolver │ ├── BackedEnumValueResolver.php │ ├── DateTimeValueResolver.php │ ├── DefaultValueResolver.php │ ├── NotTaggedControllerValueResolver.php │ ├── QueryParameterValueResolver.php │ ├── RequestAttributeValueResolver.php │ ├── RequestPayloadValueResolver.php │ ├── RequestValueResolver.php │ ├── ServiceValueResolver.php │ ├── SessionValueResolver.php │ ├── TraceableValueResolver.php │ ├── UidValueResolver.php │ └── VariadicValueResolver.php ├── ArgumentResolverInterface.php ├── ContainerControllerResolver.php ├── ControllerReference.php ├── ControllerResolver.php ├── ControllerResolverInterface.php ├── ErrorController.php ├── TraceableArgumentResolver.php ├── TraceableControllerResolver.php └── ValueResolverInterface.php ├── ControllerMetadata ├── ArgumentMetadata.php ├── ArgumentMetadataFactory.php └── ArgumentMetadataFactoryInterface.php ├── DataCollector ├── AjaxDataCollector.php ├── ConfigDataCollector.php ├── DataCollector.php ├── DataCollectorInterface.php ├── DumpDataCollector.php ├── EventDataCollector.php ├── ExceptionDataCollector.php ├── LateDataCollectorInterface.php ├── LoggerDataCollector.php ├── MemoryDataCollector.php ├── RequestDataCollector.php ├── RouterDataCollector.php └── TimeDataCollector.php ├── Debug ├── ErrorHandlerConfigurator.php ├── TraceableEventDispatcher.php └── VirtualRequestStack.php ├── DependencyInjection ├── AddAnnotatedClassesToCachePass.php ├── ConfigurableExtension.php ├── ControllerArgumentValueResolverPass.php ├── Extension.php ├── FragmentRendererPass.php ├── LazyLoadingFragmentHandler.php ├── LoggerPass.php ├── MergeExtensionConfigurationPass.php ├── RegisterControllerArgumentLocatorsPass.php ├── RegisterLocaleAwareServicesPass.php ├── RemoveEmptyControllerArgumentLocatorsPass.php ├── ResettableServicePass.php ├── ServicesResetter.php └── ServicesResetterInterface.php ├── Event ├── ControllerArgumentsEvent.php ├── ControllerEvent.php ├── ExceptionEvent.php ├── FinishRequestEvent.php ├── KernelEvent.php ├── RequestEvent.php ├── ResponseEvent.php ├── TerminateEvent.php └── ViewEvent.php ├── EventListener ├── AbstractSessionListener.php ├── AddRequestFormatsListener.php ├── CacheAttributeListener.php ├── DebugHandlersListener.php ├── DisallowRobotsIndexingListener.php ├── DumpListener.php ├── ErrorListener.php ├── FragmentListener.php ├── LocaleAwareListener.php ├── LocaleListener.php ├── ProfilerListener.php ├── ResponseListener.php ├── RouterListener.php ├── SessionListener.php ├── SurrogateListener.php └── ValidateRequestListener.php ├── Exception ├── AccessDeniedHttpException.php ├── BadRequestHttpException.php ├── ConflictHttpException.php ├── ControllerDoesNotReturnResponseException.php ├── GoneHttpException.php ├── HttpException.php ├── HttpExceptionInterface.php ├── InvalidMetadataException.php ├── LengthRequiredHttpException.php ├── LockedHttpException.php ├── MethodNotAllowedHttpException.php ├── NearMissValueResolverException.php ├── NotAcceptableHttpException.php ├── NotFoundHttpException.php ├── PreconditionFailedHttpException.php ├── PreconditionRequiredHttpException.php ├── ResolverNotFoundException.php ├── ServiceUnavailableHttpException.php ├── TooManyRequestsHttpException.php ├── UnauthorizedHttpException.php ├── UnexpectedSessionUsageException.php ├── UnprocessableEntityHttpException.php └── UnsupportedMediaTypeHttpException.php ├── Fragment ├── AbstractSurrogateFragmentRenderer.php ├── EsiFragmentRenderer.php ├── FragmentHandler.php ├── FragmentRendererInterface.php ├── FragmentUriGenerator.php ├── FragmentUriGeneratorInterface.php ├── HIncludeFragmentRenderer.php ├── InlineFragmentRenderer.php ├── RoutableFragmentRenderer.php └── SsiFragmentRenderer.php ├── HttpCache ├── AbstractSurrogate.php ├── CacheWasLockedException.php ├── Esi.php ├── HttpCache.php ├── ResponseCacheStrategy.php ├── ResponseCacheStrategyInterface.php ├── Ssi.php ├── Store.php ├── StoreInterface.php ├── SubRequestHandler.php └── SurrogateInterface.php ├── HttpClientKernel.php ├── HttpKernel.php ├── HttpKernelBrowser.php ├── HttpKernelInterface.php ├── Kernel.php ├── KernelEvents.php ├── KernelInterface.php ├── LICENSE ├── Log ├── DebugLoggerConfigurator.php ├── DebugLoggerInterface.php └── Logger.php ├── Profiler ├── FileProfilerStorage.php ├── Profile.php ├── Profiler.php ├── ProfilerStateChecker.php └── ProfilerStorageInterface.php ├── README.md ├── RebootableInterface.php ├── Resources └── welcome.html.php ├── TerminableInterface.php └── composer.json /Attribute/AsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/AsController.php -------------------------------------------------------------------------------- /Attribute/AsTargetedValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/AsTargetedValueResolver.php -------------------------------------------------------------------------------- /Attribute/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/Cache.php -------------------------------------------------------------------------------- /Attribute/MapDateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/MapDateTime.php -------------------------------------------------------------------------------- /Attribute/MapQueryParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/MapQueryParameter.php -------------------------------------------------------------------------------- /Attribute/MapQueryString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/MapQueryString.php -------------------------------------------------------------------------------- /Attribute/MapRequestPayload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/MapRequestPayload.php -------------------------------------------------------------------------------- /Attribute/MapUploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/MapUploadedFile.php -------------------------------------------------------------------------------- /Attribute/ValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/ValueResolver.php -------------------------------------------------------------------------------- /Attribute/WithHttpStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/WithHttpStatus.php -------------------------------------------------------------------------------- /Attribute/WithLogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Attribute/WithLogLevel.php -------------------------------------------------------------------------------- /Bundle/AbstractBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Bundle/AbstractBundle.php -------------------------------------------------------------------------------- /Bundle/Bundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Bundle/Bundle.php -------------------------------------------------------------------------------- /Bundle/BundleExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Bundle/BundleExtension.php -------------------------------------------------------------------------------- /Bundle/BundleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Bundle/BundleInterface.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CacheClearer/CacheClearerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/CacheClearer/CacheClearerInterface.php -------------------------------------------------------------------------------- /CacheClearer/ChainCacheClearer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/CacheClearer/ChainCacheClearer.php -------------------------------------------------------------------------------- /CacheClearer/Psr6CacheClearer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/CacheClearer/Psr6CacheClearer.php -------------------------------------------------------------------------------- /CacheWarmer/CacheWarmer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/CacheWarmer/CacheWarmer.php -------------------------------------------------------------------------------- /CacheWarmer/CacheWarmerAggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/CacheWarmer/CacheWarmerAggregate.php -------------------------------------------------------------------------------- /CacheWarmer/CacheWarmerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/CacheWarmer/CacheWarmerInterface.php -------------------------------------------------------------------------------- /CacheWarmer/WarmableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/CacheWarmer/WarmableInterface.php -------------------------------------------------------------------------------- /Config/FileLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Config/FileLocator.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/BackedEnumValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/BackedEnumValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/DateTimeValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/DateTimeValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/DefaultValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/DefaultValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/NotTaggedControllerValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/NotTaggedControllerValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/QueryParameterValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/QueryParameterValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/RequestAttributeValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/RequestAttributeValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/RequestPayloadValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/RequestPayloadValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/RequestValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/RequestValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/ServiceValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/ServiceValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/SessionValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/SessionValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/TraceableValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/TraceableValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/UidValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/UidValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolver/VariadicValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolver/VariadicValueResolver.php -------------------------------------------------------------------------------- /Controller/ArgumentResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ArgumentResolverInterface.php -------------------------------------------------------------------------------- /Controller/ContainerControllerResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ContainerControllerResolver.php -------------------------------------------------------------------------------- /Controller/ControllerReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ControllerReference.php -------------------------------------------------------------------------------- /Controller/ControllerResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ControllerResolver.php -------------------------------------------------------------------------------- /Controller/ControllerResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ControllerResolverInterface.php -------------------------------------------------------------------------------- /Controller/ErrorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ErrorController.php -------------------------------------------------------------------------------- /Controller/TraceableArgumentResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/TraceableArgumentResolver.php -------------------------------------------------------------------------------- /Controller/TraceableControllerResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/TraceableControllerResolver.php -------------------------------------------------------------------------------- /Controller/ValueResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Controller/ValueResolverInterface.php -------------------------------------------------------------------------------- /ControllerMetadata/ArgumentMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/ControllerMetadata/ArgumentMetadata.php -------------------------------------------------------------------------------- /ControllerMetadata/ArgumentMetadataFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/ControllerMetadata/ArgumentMetadataFactory.php -------------------------------------------------------------------------------- /ControllerMetadata/ArgumentMetadataFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/ControllerMetadata/ArgumentMetadataFactoryInterface.php -------------------------------------------------------------------------------- /DataCollector/AjaxDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/AjaxDataCollector.php -------------------------------------------------------------------------------- /DataCollector/ConfigDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/ConfigDataCollector.php -------------------------------------------------------------------------------- /DataCollector/DataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/DataCollector.php -------------------------------------------------------------------------------- /DataCollector/DataCollectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/DataCollectorInterface.php -------------------------------------------------------------------------------- /DataCollector/DumpDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/DumpDataCollector.php -------------------------------------------------------------------------------- /DataCollector/EventDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/EventDataCollector.php -------------------------------------------------------------------------------- /DataCollector/ExceptionDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/ExceptionDataCollector.php -------------------------------------------------------------------------------- /DataCollector/LateDataCollectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/LateDataCollectorInterface.php -------------------------------------------------------------------------------- /DataCollector/LoggerDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/LoggerDataCollector.php -------------------------------------------------------------------------------- /DataCollector/MemoryDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/MemoryDataCollector.php -------------------------------------------------------------------------------- /DataCollector/RequestDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/RequestDataCollector.php -------------------------------------------------------------------------------- /DataCollector/RouterDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/RouterDataCollector.php -------------------------------------------------------------------------------- /DataCollector/TimeDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DataCollector/TimeDataCollector.php -------------------------------------------------------------------------------- /Debug/ErrorHandlerConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Debug/ErrorHandlerConfigurator.php -------------------------------------------------------------------------------- /Debug/TraceableEventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Debug/TraceableEventDispatcher.php -------------------------------------------------------------------------------- /Debug/VirtualRequestStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Debug/VirtualRequestStack.php -------------------------------------------------------------------------------- /DependencyInjection/AddAnnotatedClassesToCachePass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/AddAnnotatedClassesToCachePass.php -------------------------------------------------------------------------------- /DependencyInjection/ConfigurableExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/ConfigurableExtension.php -------------------------------------------------------------------------------- /DependencyInjection/ControllerArgumentValueResolverPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/ControllerArgumentValueResolverPass.php -------------------------------------------------------------------------------- /DependencyInjection/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/Extension.php -------------------------------------------------------------------------------- /DependencyInjection/FragmentRendererPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/FragmentRendererPass.php -------------------------------------------------------------------------------- /DependencyInjection/LazyLoadingFragmentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/LazyLoadingFragmentHandler.php -------------------------------------------------------------------------------- /DependencyInjection/LoggerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/LoggerPass.php -------------------------------------------------------------------------------- /DependencyInjection/MergeExtensionConfigurationPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/MergeExtensionConfigurationPass.php -------------------------------------------------------------------------------- /DependencyInjection/RegisterControllerArgumentLocatorsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/RegisterControllerArgumentLocatorsPass.php -------------------------------------------------------------------------------- /DependencyInjection/RegisterLocaleAwareServicesPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/RegisterLocaleAwareServicesPass.php -------------------------------------------------------------------------------- /DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php -------------------------------------------------------------------------------- /DependencyInjection/ResettableServicePass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/ResettableServicePass.php -------------------------------------------------------------------------------- /DependencyInjection/ServicesResetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/ServicesResetter.php -------------------------------------------------------------------------------- /DependencyInjection/ServicesResetterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/DependencyInjection/ServicesResetterInterface.php -------------------------------------------------------------------------------- /Event/ControllerArgumentsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Event/ControllerArgumentsEvent.php -------------------------------------------------------------------------------- /Event/ControllerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Event/ControllerEvent.php -------------------------------------------------------------------------------- /Event/ExceptionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Event/ExceptionEvent.php -------------------------------------------------------------------------------- /Event/FinishRequestEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Event/FinishRequestEvent.php -------------------------------------------------------------------------------- /Event/KernelEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Event/KernelEvent.php -------------------------------------------------------------------------------- /Event/RequestEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Event/RequestEvent.php -------------------------------------------------------------------------------- /Event/ResponseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Event/ResponseEvent.php -------------------------------------------------------------------------------- /Event/TerminateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Event/TerminateEvent.php -------------------------------------------------------------------------------- /Event/ViewEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Event/ViewEvent.php -------------------------------------------------------------------------------- /EventListener/AbstractSessionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/AbstractSessionListener.php -------------------------------------------------------------------------------- /EventListener/AddRequestFormatsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/AddRequestFormatsListener.php -------------------------------------------------------------------------------- /EventListener/CacheAttributeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/CacheAttributeListener.php -------------------------------------------------------------------------------- /EventListener/DebugHandlersListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/DebugHandlersListener.php -------------------------------------------------------------------------------- /EventListener/DisallowRobotsIndexingListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/DisallowRobotsIndexingListener.php -------------------------------------------------------------------------------- /EventListener/DumpListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/DumpListener.php -------------------------------------------------------------------------------- /EventListener/ErrorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/ErrorListener.php -------------------------------------------------------------------------------- /EventListener/FragmentListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/FragmentListener.php -------------------------------------------------------------------------------- /EventListener/LocaleAwareListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/LocaleAwareListener.php -------------------------------------------------------------------------------- /EventListener/LocaleListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/LocaleListener.php -------------------------------------------------------------------------------- /EventListener/ProfilerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/ProfilerListener.php -------------------------------------------------------------------------------- /EventListener/ResponseListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/ResponseListener.php -------------------------------------------------------------------------------- /EventListener/RouterListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/RouterListener.php -------------------------------------------------------------------------------- /EventListener/SessionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/SessionListener.php -------------------------------------------------------------------------------- /EventListener/SurrogateListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/SurrogateListener.php -------------------------------------------------------------------------------- /EventListener/ValidateRequestListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/EventListener/ValidateRequestListener.php -------------------------------------------------------------------------------- /Exception/AccessDeniedHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/AccessDeniedHttpException.php -------------------------------------------------------------------------------- /Exception/BadRequestHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/BadRequestHttpException.php -------------------------------------------------------------------------------- /Exception/ConflictHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/ConflictHttpException.php -------------------------------------------------------------------------------- /Exception/ControllerDoesNotReturnResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/ControllerDoesNotReturnResponseException.php -------------------------------------------------------------------------------- /Exception/GoneHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/GoneHttpException.php -------------------------------------------------------------------------------- /Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/HttpException.php -------------------------------------------------------------------------------- /Exception/HttpExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/HttpExceptionInterface.php -------------------------------------------------------------------------------- /Exception/InvalidMetadataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/InvalidMetadataException.php -------------------------------------------------------------------------------- /Exception/LengthRequiredHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/LengthRequiredHttpException.php -------------------------------------------------------------------------------- /Exception/LockedHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/LockedHttpException.php -------------------------------------------------------------------------------- /Exception/MethodNotAllowedHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/MethodNotAllowedHttpException.php -------------------------------------------------------------------------------- /Exception/NearMissValueResolverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/NearMissValueResolverException.php -------------------------------------------------------------------------------- /Exception/NotAcceptableHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/NotAcceptableHttpException.php -------------------------------------------------------------------------------- /Exception/NotFoundHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/NotFoundHttpException.php -------------------------------------------------------------------------------- /Exception/PreconditionFailedHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/PreconditionFailedHttpException.php -------------------------------------------------------------------------------- /Exception/PreconditionRequiredHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/PreconditionRequiredHttpException.php -------------------------------------------------------------------------------- /Exception/ResolverNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/ResolverNotFoundException.php -------------------------------------------------------------------------------- /Exception/ServiceUnavailableHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/ServiceUnavailableHttpException.php -------------------------------------------------------------------------------- /Exception/TooManyRequestsHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/TooManyRequestsHttpException.php -------------------------------------------------------------------------------- /Exception/UnauthorizedHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/UnauthorizedHttpException.php -------------------------------------------------------------------------------- /Exception/UnexpectedSessionUsageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/UnexpectedSessionUsageException.php -------------------------------------------------------------------------------- /Exception/UnprocessableEntityHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/UnprocessableEntityHttpException.php -------------------------------------------------------------------------------- /Exception/UnsupportedMediaTypeHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Exception/UnsupportedMediaTypeHttpException.php -------------------------------------------------------------------------------- /Fragment/AbstractSurrogateFragmentRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/AbstractSurrogateFragmentRenderer.php -------------------------------------------------------------------------------- /Fragment/EsiFragmentRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/EsiFragmentRenderer.php -------------------------------------------------------------------------------- /Fragment/FragmentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/FragmentHandler.php -------------------------------------------------------------------------------- /Fragment/FragmentRendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/FragmentRendererInterface.php -------------------------------------------------------------------------------- /Fragment/FragmentUriGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/FragmentUriGenerator.php -------------------------------------------------------------------------------- /Fragment/FragmentUriGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/FragmentUriGeneratorInterface.php -------------------------------------------------------------------------------- /Fragment/HIncludeFragmentRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/HIncludeFragmentRenderer.php -------------------------------------------------------------------------------- /Fragment/InlineFragmentRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/InlineFragmentRenderer.php -------------------------------------------------------------------------------- /Fragment/RoutableFragmentRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/RoutableFragmentRenderer.php -------------------------------------------------------------------------------- /Fragment/SsiFragmentRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Fragment/SsiFragmentRenderer.php -------------------------------------------------------------------------------- /HttpCache/AbstractSurrogate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/AbstractSurrogate.php -------------------------------------------------------------------------------- /HttpCache/CacheWasLockedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/CacheWasLockedException.php -------------------------------------------------------------------------------- /HttpCache/Esi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/Esi.php -------------------------------------------------------------------------------- /HttpCache/HttpCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/HttpCache.php -------------------------------------------------------------------------------- /HttpCache/ResponseCacheStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/ResponseCacheStrategy.php -------------------------------------------------------------------------------- /HttpCache/ResponseCacheStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/ResponseCacheStrategyInterface.php -------------------------------------------------------------------------------- /HttpCache/Ssi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/Ssi.php -------------------------------------------------------------------------------- /HttpCache/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/Store.php -------------------------------------------------------------------------------- /HttpCache/StoreInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/StoreInterface.php -------------------------------------------------------------------------------- /HttpCache/SubRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/SubRequestHandler.php -------------------------------------------------------------------------------- /HttpCache/SurrogateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpCache/SurrogateInterface.php -------------------------------------------------------------------------------- /HttpClientKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpClientKernel.php -------------------------------------------------------------------------------- /HttpKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpKernel.php -------------------------------------------------------------------------------- /HttpKernelBrowser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpKernelBrowser.php -------------------------------------------------------------------------------- /HttpKernelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/HttpKernelInterface.php -------------------------------------------------------------------------------- /Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Kernel.php -------------------------------------------------------------------------------- /KernelEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/KernelEvents.php -------------------------------------------------------------------------------- /KernelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/KernelInterface.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/LICENSE -------------------------------------------------------------------------------- /Log/DebugLoggerConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Log/DebugLoggerConfigurator.php -------------------------------------------------------------------------------- /Log/DebugLoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Log/DebugLoggerInterface.php -------------------------------------------------------------------------------- /Log/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Log/Logger.php -------------------------------------------------------------------------------- /Profiler/FileProfilerStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Profiler/FileProfilerStorage.php -------------------------------------------------------------------------------- /Profiler/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Profiler/Profile.php -------------------------------------------------------------------------------- /Profiler/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Profiler/Profiler.php -------------------------------------------------------------------------------- /Profiler/ProfilerStateChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Profiler/ProfilerStateChecker.php -------------------------------------------------------------------------------- /Profiler/ProfilerStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Profiler/ProfilerStorageInterface.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/README.md -------------------------------------------------------------------------------- /RebootableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/RebootableInterface.php -------------------------------------------------------------------------------- /Resources/welcome.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/Resources/welcome.html.php -------------------------------------------------------------------------------- /TerminableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/TerminableInterface.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/http-kernel/HEAD/composer.json --------------------------------------------------------------------------------