Skip to content

Instantly share code, notes, and snippets.

@Seldaek
Created December 8, 2015 10:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Seldaek/07d8d899f72701bf549e to your computer and use it in GitHub Desktop.
Save Seldaek/07d8d899f72701bf549e to your computer and use it in GitHub Desktop.
strtr vs str_replace benchmark
<?php
$jobs = array(
'old/strtr' => function($args) {
$classes = [];
foreach ($args as $class) {
$classes[] = strtr($class, '\\', DIRECTORY_SEPARATOR);
}
return $classes;
},
'new/str_replace' => function($args) {
$classes = [];
foreach ($args as $class) {
$classes[] = str_replace('\\', DIRECTORY_SEPARATOR, $class);
}
return $classes;
},
'new/str_replace/full' => function($args) {
$classes = [];
foreach ($args as $class) {
$classes[] = ('\\' !== DIRECTORY_SEPARATOR ? str_replace('\\', DIRECTORY_SEPARATOR, $class) : $class);
}
return $classes;
},
);
class Bench
{
public function __construct($jobs, $args, $iterations)
{
$results = $this->runJobs($jobs, $args, $iterations);
usort($results, function($a, $b) {
return $a['time'] > $b['time'];
});
$newline = (PHP_SAPI=='cli'?PHP_EOL:'<br/>');
echo 'PHP '.phpversion().$newline;
foreach ($results as $name => $res) {
echo $res['name'].' :'.$newline;
unset($res['name']);
foreach ($res as $k => $v) {
echo ' '.$k.': '.$v.$newline;
}
}
}
private function runJobs($jobs, $args, $iterations)
{
$res = array();
foreach ($jobs as $name => $job) {
$res[] = $this->bench($name, $job, $args, $iterations);
echo '.';
flush();
}
echo (PHP_SAPI=='cli'?PHP_EOL:'<br/>');
return $res;
}
private function bench($name, $job, $args, $iterations)
{
$start = microtime(true);
for ($i = 0; $i < $iterations; $i++) {
$res = $job($args);
}
if (!is_string($res)) {
$res = serialize($res);
}
if (strlen($res) > 100) {
$res = md5($res);
}
return array(
'name' => $name,
'time' => microtime(true) - $start,
'iterations' => $iterations,
'retval' => $res,
);
}
}
$args = [
'Symfony\\Bridge\\Doctrine\\CacheWarmer\\ProxyCacheWarmer',
'Symfony\\Bridge\\Doctrine\\ContainerAwareEventManager',
'Symfony\\Bridge\\Doctrine\\DataCollector\\DoctrineDataCollector',
'Symfony\\Bridge\\Doctrine\\DataFixtures\\ContainerAwareLoader',
'Symfony\\Bridge\\Doctrine\\DependencyInjection\\AbstractDoctrineExtension',
'Symfony\\Bridge\\Doctrine\\DependencyInjection\\CompilerPass\\DoctrineValidationPass',
'Symfony\\Bridge\\Doctrine\\DependencyInjection\\CompilerPass\\RegisterEventListenersAndSubscribersPass',
'Symfony\\Bridge\\Doctrine\\DependencyInjection\\CompilerPass\\RegisterMappingsPass',
'Symfony\\Bridge\\Doctrine\\DependencyInjection\\Security\\UserProvider\\EntityFactory',
'Symfony\\Bridge\\Doctrine\\ExpressionLanguage\\DoctrineParserCache',
'Symfony\\Bridge\\Doctrine\\Form\\ChoiceList\\DoctrineChoiceLoader',
'Symfony\\Bridge\\Doctrine\\Form\\ChoiceList\\EntityChoiceList',
'Symfony\\Bridge\\Doctrine\\Form\\ChoiceList\\EntityLoaderInterface',
'Symfony\\Bridge\\Doctrine\\Form\\ChoiceList\\IdReader',
'Symfony\\Bridge\\Doctrine\\Form\\ChoiceList\\ORMQueryBuilderLoader',
'Symfony\\Bridge\\Doctrine\\Form\\DataTransformer\\CollectionToArrayTransformer',
'Symfony\\Bridge\\Doctrine\\Form\\DoctrineOrmExtension',
'Symfony\\Bridge\\Doctrine\\Form\\DoctrineOrmTypeGuesser',
'Symfony\\Bridge\\Doctrine\\Form\\EventListener\\MergeDoctrineCollectionListener',
'Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType',
'Symfony\\Bridge\\Doctrine\\Form\\Type\\EntityType',
'Symfony\\Bridge\\Doctrine\\HttpFoundation\\DbalSessionHandler',
'Symfony\\Bridge\\Doctrine\\HttpFoundation\\DbalSessionHandlerSchema',
'Symfony\\Bridge\\Doctrine\\Logger\\DbalLogger',
'Symfony\\Bridge\\Doctrine\\ManagerRegistry',
'Symfony\\Bridge\\Doctrine\\RegistryInterface',
'Symfony\\Bridge\\Doctrine\\Security\\RememberMe\\DoctrineTokenProvider',
'Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider',
'Symfony\\Bridge\\Doctrine\\Test\\DoctrineTestHelper',
'Symfony\\Bridge\\Doctrine\\Tests\\ContainerAwareEventManagerTest',
'Symfony\\Bridge\\Doctrine\\Tests\\DataCollector\\DoctrineDataCollectorTest',
'Symfony\\Bridge\\Doctrine\\Tests\\DataFixtures\\ContainerAwareLoaderTest',
'Symfony\\Bridge\\Doctrine\\Tests\\DependencyInjection\\CompilerPass\\RegisterEventListenersAndSubscribersPassTest',
'Symfony\\Bridge\\Doctrine\\Tests\\DependencyInjection\\DoctrineExtensionTest',
'Symfony\\Bridge\\Doctrine\\Tests\\DoctrineOrmTestCase',
'Symfony\\Bridge\\Doctrine\\Tests\\ExpressionLanguage\\DoctrineParserCacheTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\AssociationEntity',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\CompositeIntIdEntity',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\CompositeStringIdEntity',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\ContainerAwareFixture',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\DoubleNameEntity',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\GroupableEntity',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\SingleAssociationToIntIdEntity',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\SingleIntIdEntity',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\SingleIntIdNoToStringEntity',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\SingleStringIdEntity',
'Symfony\\Bridge\\Doctrine\\Tests\\Fixtures\\User',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\AbstractEntityChoiceListCompositeIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\AbstractEntityChoiceListSingleAssociationToIntIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\AbstractEntityChoiceListSingleIntIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\AbstractEntityChoiceListSingleStringIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\AbstractEntityChoiceListTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\GenericEntityChoiceListTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\LoadedEntityChoiceListCompositeIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\LoadedEntityChoiceListSingleAssociationToIntIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\LoadedEntityChoiceListSingleIntIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\LoadedEntityChoiceListSingleStringIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\ORMQueryBuilderLoaderTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\UnloadedEntityChoiceListCompositeIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\UnloadedEntityChoiceListCompositeIdWithQueryBuilderTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\UnloadedEntityChoiceListSingleAssociationToIntIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\UnloadedEntityChoiceListSingleAssociationToIntIdWithQueryBuilderTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\UnloadedEntityChoiceListSingleIntIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\UnloadedEntityChoiceListSingleIntIdWithQueryBuilderTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\UnloadedEntityChoiceListSingleStringIdTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\ChoiceList\\UnloadedEntityChoiceListSingleStringIdWithQueryBuilderTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\DataTransformer\\CollectionToArrayTransformerTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\DoctrineOrmTypeGuesserTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\Type\\EntityTypePerformanceTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Form\\Type\\EntityTypeTest',
'Symfony\\Bridge\\Doctrine\\Tests\\HttpFoundation\\DbalSessionHandlerTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Logger\\DbalLoggerTest',
'Symfony\\Bridge\\Doctrine\\Tests\\MyListener',
'Symfony\\Bridge\\Doctrine\\Tests\\Security\\User\\EntityUserProviderTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Validator\\Constraints\\LegacyUniqueEntityValidatorLegacyApiTest',
'Symfony\\Bridge\\Doctrine\\Tests\\Validator\\Constraints\\UniqueEntityValidatorTest',
'Symfony\\Bridge\\Doctrine\\Validator\\Constraints\\UniqueEntity',
'Symfony\\Bridge\\Doctrine\\Validator\\Constraints\\UniqueEntityValidator',
'Symfony\\Bridge\\Doctrine\\Validator\\DoctrineInitializer',
'Symfony\\Bridge\\Monolog\\Formatter\\ConsoleFormatter',
'Symfony\\Bridge\\Monolog\\Handler\\ChromePhpHandler',
'Symfony\\Bridge\\Monolog\\Handler\\ConsoleHandler',
'Symfony\\Bridge\\Monolog\\Handler\\DebugHandler',
'Symfony\\Bridge\\Monolog\\Handler\\FingersCrossed\\NotFoundActivationStrategy',
'Symfony\\Bridge\\Monolog\\Handler\\FirePHPHandler',
'Symfony\\Bridge\\Monolog\\Handler\\SwiftMailerHandler',
'Symfony\\Bridge\\Monolog\\Logger',
'Symfony\\Bridge\\Monolog\\Processor\\WebProcessor',
'Symfony\\Bridge\\Monolog\\Tests\\Handler\\ConsoleHandlerTest',
'Symfony\\Bridge\\Monolog\\Tests\\Handler\\FingersCrossed\\NotFoundActivationStrategyTest',
'Symfony\\Bridge\\Monolog\\Tests\\Processor\\WebProcessorTest',
'Symfony\\Bridge\\ProxyManager\\LazyProxy\\Instantiator\\RuntimeInstantiator',
'Symfony\\Bridge\\ProxyManager\\LazyProxy\\PhpDumper\\ProxyDumper',
'Symfony\\Bridge\\ProxyManager\\Tests\\LazyProxy\\ContainerBuilderTest',
'Symfony\\Bridge\\ProxyManager\\Tests\\LazyProxy\\Dumper\\PhpDumperTest',
'Symfony\\Bridge\\ProxyManager\\Tests\\LazyProxy\\Instantiator\\RuntimeInstantiatorTest',
'Symfony\\Bridge\\ProxyManager\\Tests\\LazyProxy\\PhpDumper\\ProxyDumperTest',
'Symfony\\Bridge\\Swiftmailer\\DataCollector\\MessageDataCollector',
'Symfony\\Bridge\\Twig\\AppVariable',
'Symfony\\Bridge\\Twig\\Command\\DebugCommand',
'Symfony\\Bridge\\Twig\\Command\\LintCommand',
'Symfony\\Bridge\\Twig\\DataCollector\\TwigDataCollector',
'Symfony\\Bridge\\Twig\\Extension\\AssetExtension',
'Symfony\\Bridge\\Twig\\Extension\\CodeExtension',
'Symfony\\Bridge\\Twig\\Extension\\DumpExtension',
'Symfony\\Bridge\\Twig\\Extension\\ExpressionExtension',
'Symfony\\Bridge\\Twig\\Extension\\FormExtension',
'Symfony\\Bridge\\Twig\\Extension\\HttpFoundationExtension',
'Symfony\\Bridge\\Twig\\Extension\\HttpKernelExtension',
'Symfony\\Bridge\\Twig\\Extension\\LogoutUrlExtension',
'Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension',
'Symfony\\Bridge\\Twig\\Extension\\RoutingExtension',
'Symfony\\Bridge\\Twig\\Extension\\SecurityExtension',
'Symfony\\Bridge\\Twig\\Extension\\StopwatchExtension',
'Symfony\\Bridge\\Twig\\Extension\\TranslationExtension',
'Symfony\\Bridge\\Twig\\Extension\\YamlExtension',
'Symfony\\Bridge\\Twig\\Form\\TwigRenderer',
'Symfony\\Bridge\\Twig\\Form\\TwigRendererEngine',
'Symfony\\Bridge\\Twig\\Form\\TwigRendererEngineInterface',
'Symfony\\Bridge\\Twig\\Form\\TwigRendererInterface',
'Symfony\\Bridge\\Twig\\NodeVisitor\\Scope',
'Symfony\\Bridge\\Twig\\NodeVisitor\\TranslationDefaultDomainNodeVisitor',
'Symfony\\Bridge\\Twig\\NodeVisitor\\TranslationNodeVisitor',
'Symfony\\Bridge\\Twig\\Node\\DumpNode',
'Symfony\\Bridge\\Twig\\Node\\FormEnctypeNode',
'Symfony\\Bridge\\Twig\\Node\\FormThemeNode',
'Symfony\\Bridge\\Twig\\Node\\RenderBlockNode',
'Symfony\\Bridge\\Twig\\Node\\SearchAndRenderBlockNode',
'Symfony\\Bridge\\Twig\\Node\\StopwatchNode',
'Symfony\\Bridge\\Twig\\Node\\TransDefaultDomainNode',
'Symfony\\Bridge\\Twig\\Node\\TransNode',
'Symfony\\Bridge\\Twig\\Tests\\Command\\LintCommandTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\AssetExtensionTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\CodeExtensionTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\DumpExtensionTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\ExpressionExtensionTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\Fixtures\\StubFilesystemLoader',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\Fixtures\\StubTranslator',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\FormExtensionBootstrap3LayoutTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\FormExtensionDivLayoutTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\FormExtensionTableLayoutTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\HttpFoundationExtensionTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\HttpKernelExtensionTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\RoutingExtensionTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\StopwatchExtensionTest',
'Symfony\\Bridge\\Twig\\Tests\\Extension\\TranslationExtensionTest',
'Symfony\\Bridge\\Twig\\Tests\\NodeVisitor\\ScopeTest',
'Symfony\\Bridge\\Twig\\Tests\\NodeVisitor\\TranslationDefaultDomainNodeVisitorTest',
'Symfony\\Bridge\\Twig\\Tests\\NodeVisitor\\TranslationNodeVisitorTest',
'Symfony\\Bridge\\Twig\\Tests\\NodeVisitor\\TwigNodeProvider',
'Symfony\\Bridge\\Twig\\Tests\\Node\\DumpNodeTest',
'Symfony\\Bridge\\Twig\\Tests\\Node\\FormThemeTest',
'Symfony\\Bridge\\Twig\\Tests\\Node\\SearchAndRenderBlockNodeTest',
'Symfony\\Bridge\\Twig\\Tests\\Node\\TransNodeTest',
'Symfony\\Bridge\\Twig\\Tests\\TokenParser\\FormThemeTokenParserTest',
'Symfony\\Bridge\\Twig\\Tests\\Translation\\TwigExtractorTest',
'Symfony\\Bridge\\Twig\\Tests\\TwigEngineTest',
'Symfony\\Bridge\\Twig\\TokenParser\\DumpTokenParser',
'Symfony\\Bridge\\Twig\\TokenParser\\FormThemeTokenParser',
'Symfony\\Bridge\\Twig\\TokenParser\\StopwatchTokenParser',
'Symfony\\Bridge\\Twig\\TokenParser\\TransChoiceTokenParser',
'Symfony\\Bridge\\Twig\\TokenParser\\TransDefaultDomainTokenParser',
'Symfony\\Bridge\\Twig\\TokenParser\\TransTokenParser',
'Symfony\\Bridge\\Twig\\Translation\\TwigExtractor',
'Symfony\\Bridge\\Twig\\TwigEngine',
'Symfony\\Bundle\\DebugBundle\\DebugBundle',
'Symfony\\Bundle\\DebugBundle\\DependencyInjection\\Compiler\\DumpDataCollectorPass',
'Symfony\\Bundle\\DebugBundle\\DependencyInjection\\Configuration',
'Symfony\\Bundle\\DebugBundle\\DependencyInjection\\DebugExtension',
'Symfony\\Bundle\\DebugBundle\\Tests\\DependencyInjection\\Compiler\\DumpDataCollectorPassTest',
'Symfony\\Bundle\\DebugBundle\\Tests\\DependencyInjection\\DebugExtensionTest',
'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\RouterCacheWarmer',
'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\TemplateFinder',
'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\TemplateFinderInterface',
'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\TemplatePathsCacheWarmer',
'Symfony\\Bundle\\FrameworkBundle\\CacheWarmer\\TranslationsCacheWarmer',
'Symfony\\Bundle\\FrameworkBundle\\Client',
'Symfony\\Bundle\\FrameworkBundle\\Command\\AbstractConfigCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\AssetsInstallCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\CacheClearCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\CacheWarmupCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\ConfigDebugCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\ConfigDumpReferenceCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\ContainerAwareCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\ContainerDebugCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\EventDispatcherDebugCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\RouterApacheDumperCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\RouterDebugCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\RouterMatchCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\ServerCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\ServerRunCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\ServerStartCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\ServerStatusCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\ServerStopCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\TranslationDebugCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\TranslationUpdateCommand',
'Symfony\\Bundle\\FrameworkBundle\\Command\\YamlLintCommand',
'Symfony\\Bundle\\FrameworkBundle\\Console\\Application',
'Symfony\\Bundle\\FrameworkBundle\\Console\\Descriptor\\Descriptor',
'Symfony\\Bundle\\FrameworkBundle\\Console\\Descriptor\\JsonDescriptor',
'Symfony\\Bundle\\FrameworkBundle\\Console\\Descriptor\\MarkdownDescriptor',
'Symfony\\Bundle\\FrameworkBundle\\Console\\Descriptor\\TextDescriptor',
'Symfony\\Bundle\\FrameworkBundle\\Console\\Descriptor\\XmlDescriptor',
'Symfony\\Bundle\\FrameworkBundle\\Console\\Helper\\DescriptorHelper',
'Symfony\\Bundle\\FrameworkBundle\\Console\\Shell',
'Symfony\\Bundle\\FrameworkBundle\\Controller\\Controller',
'Symfony\\Bundle\\FrameworkBundle\\Controller\\ControllerNameParser',
'Symfony\\Bundle\\FrameworkBundle\\Controller\\ControllerResolver',
'Symfony\\Bundle\\FrameworkBundle\\Controller\\RedirectController',
'Symfony\\Bundle\\FrameworkBundle\\Controller\\TemplateController',
'Symfony\\Bundle\\FrameworkBundle\\DataCollector\\AjaxDataCollector',
'Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\AddCacheClearerPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\AddCacheWarmerPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\AddConsoleCommandPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\AddConstraintValidatorsPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\AddExpressionLanguageProvidersPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\AddValidatorInitializersPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\CompilerDebugDumpPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\ContainerBuilderDebugDumpPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\FormPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\FragmentRendererPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\LoggingTranslatorPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\ProfilerPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\RoutingResolverPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\SerializerPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\TemplatingAssetHelperPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\TemplatingPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\TranslationDumperPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\TranslationExtractorPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Compiler\\TranslatorPass',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\Configuration',
'Symfony\\Bundle\\FrameworkBundle\\DependencyInjection\\FrameworkExtension',
'Symfony\\Bundle\\FrameworkBundle\\EventListener\\SessionListener',
'Symfony\\Bundle\\FrameworkBundle\\EventListener\\TestSessionListener',
'Symfony\\Bundle\\FrameworkBundle\\Fragment\\ContainerAwareHIncludeFragmentRenderer',
'Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle',
'Symfony\\Bundle\\FrameworkBundle\\HttpCache\\HttpCache',
'Symfony\\Bundle\\FrameworkBundle\\Routing\\DelegatingLoader',
'Symfony\\Bundle\\FrameworkBundle\\Routing\\RedirectableUrlMatcher',
'Symfony\\Bundle\\FrameworkBundle\\Routing\\Router',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Asset\\PackageFactory',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Asset\\PathPackage',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Debugger',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\DelegatingEngine',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\EngineInterface',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\GlobalVariables',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Helper\\ActionsHelper',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Helper\\AssetsHelper',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Helper\\CodeHelper',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Helper\\FormHelper',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Helper\\RequestHelper',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Helper\\RouterHelper',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Helper\\SessionHelper',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Helper\\StopwatchHelper',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Helper\\TranslatorHelper',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Loader\\FilesystemLoader',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\Loader\\TemplateLocator',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\PhpEngine',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\TemplateFilenameParser',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\TemplateNameParser',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\TemplateReference',
'Symfony\\Bundle\\FrameworkBundle\\Templating\\TimedPhpEngine',
'Symfony\\Bundle\\FrameworkBundle\\Test\\KernelTestCase',
'Symfony\\Bundle\\FrameworkBundle\\Test\\WebTestCase',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\CacheWarmer\\TemplateFinderTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\ClientTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Command\\CacheClearCommand\\CacheClearCommandTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Command\\CacheClearCommand\\Fixture\\TestAppKernel',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Command\\RouterDebugCommandTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Command\\RouterMatchCommandTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Command\\TranslationDebugCommandTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Command\\TranslationUpdateCommandTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\ApplicationTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\AbstractDescriptorTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\CallableClass',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\ExtendedCallableClass',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\JsonDescriptorTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\MarkdownDescriptorTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\ObjectsProvider',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\TextDescriptorTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Console\\Descriptor\\XmlDescriptorTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Controller\\ContainerAwareController',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Controller\\ControllerNameParserTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Controller\\ControllerResolverTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Controller\\ControllerTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Controller\\RedirectControllerTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Controller\\TestController',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\AddCacheWarmerPassTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\AddConsoleCommandPassTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\AddExpressionLanguageProvidersPassTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\ExtensionPresentBundle',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\LegacyFragmentRendererPassTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\LegacyTemplatingAssetHelperPassTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\LoggingTranslatorPassTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\MyCommand',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\ProfilerPassTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\RendererService',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\SerializerPassTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\TestProvider',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\Compiler\\TranslatorPassTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\ConfigurationTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\FrameworkExtensionTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\PhpFrameworkExtensionTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\XmlFrameworkExtensionTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\DependencyInjection\\YamlFrameworkExtensionTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Fixtures\\BaseBundle\\BaseBundle',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Fragment\\LegacyContainerAwareHIncludeFragmentRendererTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\Controller\\Bar',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\Controller\\FragmentController',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\Controller\\ProfilerController',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\Controller\\SessionController',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\Controller\\SubRequestController',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\DependencyInjection\\Config\\CustomConfig',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\DependencyInjection\\Configuration',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\DependencyInjection\\TestExtension',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\TestBundle',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\ConfigDebugCommandTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\ConfigDumpReferenceCommandTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\FragmentTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\ProfilerTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\SessionTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\SubRequestsTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\WebTestCase',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\app\\AppKernel',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Routing\\RedirectableUrlMatcherTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Routing\\RouterTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\DelegatingEngineTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\GlobalVariablesTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\Helper\\AssetsHelperTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\Helper\\Fixtures\\StubTemplateNameParser',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\Helper\\Fixtures\\StubTranslator',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\Helper\\FormHelperDivLayoutTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\Helper\\FormHelperTableLayoutTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\Helper\\RequestHelperTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\Helper\\SessionHelperTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\Helper\\StopwatchHelperTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\Loader\\TemplateLocatorTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\PhpEngineTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\TemplateFilenameParserTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\TemplateNameParserTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\TemplateReferenceTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\TemplateTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Templating\\TimedPhpEngineTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\TestBundle',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\TestCase',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Translation\\PhpExtractorTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Translation\\TranslatorTest',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Translation\\TranslatorWithInvalidLocale',
'Symfony\\Bundle\\FrameworkBundle\\Tests\\Validator\\ConstraintValidatorFactoryTest',
'Symfony\\Bundle\\FrameworkBundle\\Translation\\PhpExtractor',
'Symfony\\Bundle\\FrameworkBundle\\Translation\\PhpStringTokenParser',
'Symfony\\Bundle\\FrameworkBundle\\Translation\\TranslationLoader',
'Symfony\\Bundle\\FrameworkBundle\\Translation\\Translator',
'Symfony\\Bundle\\FrameworkBundle\\Validator\\ConstraintValidatorFactory',
'Symfony\\Bundle\\MonologBundle\\DependencyInjection\\Compiler\\AddProcessorsPass',
'Symfony\\Bundle\\MonologBundle\\DependencyInjection\\Compiler\\AddSwiftMailerTransportPass',
'Symfony\\Bundle\\MonologBundle\\DependencyInjection\\Compiler\\DebugHandlerPass',
'Symfony\\Bundle\\MonologBundle\\DependencyInjection\\Compiler\\LoggerChannelPass',
'Symfony\\Bundle\\MonologBundle\\DependencyInjection\\Configuration',
'Symfony\\Bundle\\MonologBundle\\DependencyInjection\\MonologExtension',
'Symfony\\Bundle\\MonologBundle\\MonologBundle',
'Symfony\\Bundle\\MonologBundle\\NotFoundActivationStrategy',
'Symfony\\Bundle\\MonologBundle\\SwiftMailer\\MessageFactory',
'Symfony\\Bundle\\MonologBundle\\Tests\\DependencyInjection\\Compiler\\AddProcessorsPassTest',
'Symfony\\Bundle\\MonologBundle\\Tests\\DependencyInjection\\Compiler\\AddSwiftMailerTransportPassTest',
'Symfony\\Bundle\\MonologBundle\\Tests\\DependencyInjection\\Compiler\\LoggerChannelPassTest',
'Symfony\\Bundle\\MonologBundle\\Tests\\DependencyInjection\\ConfigurationTest',
'Symfony\\Bundle\\MonologBundle\\Tests\\DependencyInjection\\DependencyInjectionTest',
'Symfony\\Bundle\\MonologBundle\\Tests\\DependencyInjection\\FixtureMonologExtensionTest',
'Symfony\\Bundle\\MonologBundle\\Tests\\DependencyInjection\\MonologExtensionTest',
'Symfony\\Bundle\\MonologBundle\\Tests\\DependencyInjection\\XmlMonologExtensionTest',
'Symfony\\Bundle\\MonologBundle\\Tests\\DependencyInjection\\YamlMonologExtensionTest',
'Symfony\\Bundle\\MonologBundle\\Tests\\NotFoundActivationStrategyTest',
'Symfony\\Bundle\\SecurityBundle\\Command\\InitAclCommand',
'Symfony\\Bundle\\SecurityBundle\\Command\\SetAclCommand',
'Symfony\\Bundle\\SecurityBundle\\Command\\UserPasswordEncoderCommand',
'Symfony\\Bundle\\SecurityBundle\\DataCollector\\SecurityDataCollector',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Compiler\\AddSecurityVotersPass',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\MainConfiguration',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\SecurityExtension',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\AbstractFactory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\FormLoginFactory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\HttpBasicFactory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\HttpDigestFactory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\RememberMeFactory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\RemoteUserFactory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\SecurityFactoryInterface',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\SimpleFormFactory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\SimplePreAuthenticationFactory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\Factory\\X509Factory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\UserProvider\\InMemoryFactory',
'Symfony\\Bundle\\SecurityBundle\\DependencyInjection\\Security\\UserProvider\\UserProviderFactoryInterface',
'Symfony\\Bundle\\SecurityBundle\\EventListener\\AclSchemaListener',
'Symfony\\Bundle\\SecurityBundle\\SecurityBundle',
'Symfony\\Bundle\\SecurityBundle\\Security\\FirewallContext',
'Symfony\\Bundle\\SecurityBundle\\Security\\FirewallMap',
'Symfony\\Bundle\\SecurityBundle\\Templating\\Helper\\LogoutUrlHelper',
'Symfony\\Bundle\\SecurityBundle\\Templating\\Helper\\SecurityHelper',
'Symfony\\Bundle\\SecurityBundle\\Tests\\DataCollector\\SecurityDataCollectorTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\DependencyInjection\\CompleteConfigurationTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\DependencyInjection\\Fixtures\\UserProvider\\DummyProvider',
'Symfony\\Bundle\\SecurityBundle\\Tests\\DependencyInjection\\MainConfigurationTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\DependencyInjection\\PhpCompleteConfigurationTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\DependencyInjection\\SecurityExtensionTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\DependencyInjection\\Security\\Factory\\AbstractFactoryTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\DependencyInjection\\XmlCompleteConfigurationTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\DependencyInjection\\YamlCompleteConfigurationTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\AuthenticationCommencingTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\AclBundle\\AclBundle',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\AclBundle\\Entity\\Car',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\CsrfFormLoginBundle\\Controller\\LoginController',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\CsrfFormLoginBundle\\CsrfFormLoginBundle',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\CsrfFormLoginBundle\\Form\\UserLoginFormType',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\FirewallEntryPointBundle\\DependencyInjection\\FirewallEntryPointExtension',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\FirewallEntryPointBundle\\FirewallEntryPointBundle',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\FirewallEntryPointBundle\\Security\\EntryPointStub',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\FormLoginBundle\\Controller\\LocalizedController',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\FormLoginBundle\\Controller\\LoginController',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\FormLoginBundle\\DependencyInjection\\FormLoginExtension',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\FormLoginBundle\\FormLoginBundle',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\Bundle\\FormLoginBundle\\Security\\LocalizedFormFailureHandler',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\CsrfFormLoginTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\FirewallEntryPointTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\FormLoginTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\LocalizedRoutesAsPathTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\SecurityRoutingIntegrationTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\SetAclCommandTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\SwitchUserTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\UserPasswordEncoderCommandTest',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\WebTestCase',
'Symfony\\Bundle\\SecurityBundle\\Tests\\Functional\\app\\AppKernel',
'Symfony\\Bundle\\SecurityBundle\\Twig\\Extension\\LogoutUrlExtension',
'Symfony\\Bundle\\SwiftmailerBundle\\Command\\DebugCommand',
'Symfony\\Bundle\\SwiftmailerBundle\\Command\\NewEmailCommand',
'Symfony\\Bundle\\SwiftmailerBundle\\Command\\SendEmailCommand',
'Symfony\\Bundle\\SwiftmailerBundle\\DataCollector\\MessageDataCollector',
'Symfony\\Bundle\\SwiftmailerBundle\\DependencyInjection\\Compiler\\RegisterPluginsPass',
'Symfony\\Bundle\\SwiftmailerBundle\\DependencyInjection\\Configuration',
'Symfony\\Bundle\\SwiftmailerBundle\\DependencyInjection\\SwiftmailerExtension',
'Symfony\\Bundle\\SwiftmailerBundle\\EventListener\\EmailSenderListener',
'Symfony\\Bundle\\SwiftmailerBundle\\SwiftmailerBundle',
'Symfony\\Bundle\\SwiftmailerBundle\\Tests\\DependencyInjection\\SwiftmailerExtensionTest',
'Symfony\\Bundle\\SwiftmailerBundle\\Tests\\TestCase',
'Symfony\\Bundle\\TwigBundle\\CacheWarmer\\TemplateCacheCacheWarmer',
'Symfony\\Bundle\\TwigBundle\\Command\\DebugCommand',
'Symfony\\Bundle\\TwigBundle\\Command\\LintCommand',
'Symfony\\Bundle\\TwigBundle\\Controller\\ExceptionController',
'Symfony\\Bundle\\TwigBundle\\Controller\\PreviewErrorController',
'Symfony\\Bundle\\TwigBundle\\Debug\\TimedTwigEngine',
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\Compiler\\ExceptionListenerPass',
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\Compiler\\ExtensionPass',
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\Compiler\\TwigEnvironmentPass',
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\Compiler\\TwigLoaderPass',
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\Configuration',
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\Configurator\\EnvironmentConfigurator',
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\TwigExtension',
'Symfony\\Bundle\\TwigBundle\\Extension\\ActionsExtension',
'Symfony\\Bundle\\TwigBundle\\Extension\\AssetsExtension',
'Symfony\\Bundle\\TwigBundle\\Loader\\FilesystemLoader',
'Symfony\\Bundle\\TwigBundle\\Node\\RenderNode',
'Symfony\\Bundle\\TwigBundle\\Tests\\CacheWarmingKernel',
'Symfony\\Bundle\\TwigBundle\\Tests\\Controller\\ExceptionControllerTest',
'Symfony\\Bundle\\TwigBundle\\Tests\\Controller\\PreviewErrorControllerTest',
'Symfony\\Bundle\\TwigBundle\\Tests\\DependencyInjection\\Compiler\\TwigLoaderPassTest',
'Symfony\\Bundle\\TwigBundle\\Tests\\DependencyInjection\\ConfigurationTest',
'Symfony\\Bundle\\TwigBundle\\Tests\\DependencyInjection\\TwigExtensionTest',
'Symfony\\Bundle\\TwigBundle\\Tests\\Extension\\LegacyAssetsExtensionTest',
'Symfony\\Bundle\\TwigBundle\\Tests\\Loader\\FilesystemLoaderTest',
'Symfony\\Bundle\\TwigBundle\\Tests\\NewCacheWamingTest',
'Symfony\\Bundle\\TwigBundle\\Tests\\NoTemplatingEntryKernel',
'Symfony\\Bundle\\TwigBundle\\Tests\\NoTemplatingEntryTest',
'Symfony\\Bundle\\TwigBundle\\Tests\\TestCase',
'Symfony\\Bundle\\TwigBundle\\Tests\\TokenParser\\LegacyRenderTokenParserTest',
'Symfony\\Bundle\\TwigBundle\\TokenParser\\RenderTokenParser',
'Symfony\\Bundle\\TwigBundle\\TwigBundle',
'Symfony\\Bundle\\TwigBundle\\TwigDefaultEscapingStrategy',
'Symfony\\Bundle\\TwigBundle\\TwigEngine',
'Symfony\\Bundle\\WebProfilerBundle\\Command\\ExportCommand',
'Symfony\\Bundle\\WebProfilerBundle\\Command\\ImportCommand',
'Symfony\\Bundle\\WebProfilerBundle\\Controller\\ExceptionController',
'Symfony\\Bundle\\WebProfilerBundle\\Controller\\ProfilerController',
'Symfony\\Bundle\\WebProfilerBundle\\Controller\\RouterController',
'Symfony\\Bundle\\WebProfilerBundle\\DependencyInjection\\Configuration',
'Symfony\\Bundle\\WebProfilerBundle\\DependencyInjection\\WebProfilerExtension',
'Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener',
'Symfony\\Bundle\\WebProfilerBundle\\Profiler\\TemplateManager',
'Symfony\\Bundle\\WebProfilerBundle\\Tests\\Command\\ExportCommandTest',
'Symfony\\Bundle\\WebProfilerBundle\\Tests\\Command\\ImportCommandTest',
'Symfony\\Bundle\\WebProfilerBundle\\Tests\\Controller\\ProfilerControllerTest',
'Symfony\\Bundle\\WebProfilerBundle\\Tests\\DependencyInjection\\ConfigurationTest',
'Symfony\\Bundle\\WebProfilerBundle\\Tests\\DependencyInjection\\WebProfilerExtensionTest',
'Symfony\\Bundle\\WebProfilerBundle\\Tests\\EventListener\\WebDebugToolbarListenerTest',
'Symfony\\Bundle\\WebProfilerBundle\\Tests\\Profiler\\TemplateManagerTest',
'Symfony\\Bundle\\WebProfilerBundle\\Tests\\TestCase',
'Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension',
'Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle',
'Symfony\\Component\\Asset\\Context\\ContextInterface',
'Symfony\\Component\\Asset\\Context\\NullContext',
'Symfony\\Component\\Asset\\Context\\RequestStackContext',
'Symfony\\Component\\Asset\\Exception\\ExceptionInterface',
'Symfony\\Component\\Asset\\Exception\\InvalidArgumentException',
'Symfony\\Component\\Asset\\Exception\\LogicException',
'Symfony\\Component\\Asset\\Package',
'Symfony\\Component\\Asset\\PackageInterface',
'Symfony\\Component\\Asset\\Packages',
'Symfony\\Component\\Asset\\PathPackage',
'Symfony\\Component\\Asset\\Tests\\PackageTest',
'Symfony\\Component\\Asset\\Tests\\PackagesTest',
'Symfony\\Component\\Asset\\Tests\\PathPackageTest',
'Symfony\\Component\\Asset\\Tests\\UrlPackageTest',
'Symfony\\Component\\Asset\\UrlPackage',
'Symfony\\Component\\Asset\\VersionStrategy\\EmptyVersionStrategy',
'Symfony\\Component\\Asset\\VersionStrategy\\StaticVersionStrategy',
'Symfony\\Component\\Asset\\VersionStrategy\\VersionStrategyInterface',
'Symfony\\Component\\BrowserKit\\Client',
'Symfony\\Component\\BrowserKit\\Cookie',
'Symfony\\Component\\BrowserKit\\CookieJar',
'Symfony\\Component\\BrowserKit\\History',
'Symfony\\Component\\BrowserKit\\Request',
'Symfony\\Component\\BrowserKit\\Response',
'Symfony\\Component\\BrowserKit\\Tests\\ClientTest',
'Symfony\\Component\\BrowserKit\\Tests\\CookieJarTest',
'Symfony\\Component\\BrowserKit\\Tests\\CookieTest',
'Symfony\\Component\\BrowserKit\\Tests\\HistoryTest',
'Symfony\\Component\\BrowserKit\\Tests\\RequestTest',
'Symfony\\Component\\BrowserKit\\Tests\\ResponseTest',
'Symfony\\Component\\BrowserKit\\Tests\\SpecialResponse',
'Symfony\\Component\\BrowserKit\\Tests\\TestClient',
'Symfony\\Component\\ClassLoader\\ApcClassLoader',
'Symfony\\Component\\ClassLoader\\ApcUniversalClassLoader',
'Symfony\\Component\\ClassLoader\\ClassCollectionLoader',
'Symfony\\Component\\ClassLoader\\ClassLoader',
'Symfony\\Component\\ClassLoader\\ClassMapGenerator',
'Symfony\\Component\\ClassLoader\\DebugClassLoader',
'Symfony\\Component\\ClassLoader\\DebugUniversalClassLoader',
'Symfony\\Component\\ClassLoader\\MapClassLoader',
'Symfony\\Component\\ClassLoader\\Psr4ClassLoader',
'Symfony\\Component\\ClassLoader\\Tests\\ApcClassLoaderTest',
'Symfony\\Component\\ClassLoader\\Tests\\ClassCollectionLoaderTest',
'Symfony\\Component\\ClassLoader\\Tests\\ClassLoaderTest',
'Symfony\\Component\\ClassLoader\\Tests\\ClassMapGeneratorTest',
'Symfony\\Component\\ClassLoader\\Tests\\LegacyApcUniversalClassLoaderTest',
'Symfony\\Component\\ClassLoader\\Tests\\LegacyUniversalClassLoaderTest',
'Symfony\\Component\\ClassLoader\\Tests\\Psr4ClassLoaderTest',
'Symfony\\Component\\ClassLoader\\UniversalClassLoader',
'Symfony\\Component\\ClassLoader\\WinCacheClassLoader',
'Symfony\\Component\\ClassLoader\\XcacheClassLoader',
'Symfony\\Component\\Config\\ConfigCache',
'Symfony\\Component\\Config\\ConfigCacheFactory',
'Symfony\\Component\\Config\\ConfigCacheFactoryInterface',
'Symfony\\Component\\Config\\ConfigCacheInterface',
'Symfony\\Component\\Config\\Definition\\ArrayNode',
'Symfony\\Component\\Config\\Definition\\BaseNode',
'Symfony\\Component\\Config\\Definition\\BooleanNode',
'Symfony\\Component\\Config\\Definition\\Builder\\ArrayNodeDefinition',
'Symfony\\Component\\Config\\Definition\\Builder\\BooleanNodeDefinition',
'Symfony\\Component\\Config\\Definition\\Builder\\EnumNodeDefinition',
'Symfony\\Component\\Config\\Definition\\Builder\\ExprBuilder',
'Symfony\\Component\\Config\\Definition\\Builder\\FloatNodeDefinition',
'Symfony\\Component\\Config\\Definition\\Builder\\IntegerNodeDefinition',
'Symfony\\Component\\Config\\Definition\\Builder\\MergeBuilder',
'Symfony\\Component\\Config\\Definition\\Builder\\NodeBuilder',
'Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition',
'Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface',
'Symfony\\Component\\Config\\Definition\\Builder\\NormalizationBuilder',
'Symfony\\Component\\Config\\Definition\\Builder\\NumericNodeDefinition',
'Symfony\\Component\\Config\\Definition\\Builder\\ParentNodeDefinitionInterface',
'Symfony\\Component\\Config\\Definition\\Builder\\ScalarNodeDefinition',
'Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder',
'Symfony\\Component\\Config\\Definition\\Builder\\ValidationBuilder',
'Symfony\\Component\\Config\\Definition\\Builder\\VariableNodeDefinition',
'Symfony\\Component\\Config\\Definition\\ConfigurationInterface',
'Symfony\\Component\\Config\\Definition\\Dumper\\XmlReferenceDumper',
'Symfony\\Component\\Config\\Definition\\Dumper\\YamlReferenceDumper',
'Symfony\\Component\\Config\\Definition\\EnumNode',
'Symfony\\Component\\Config\\Definition\\Exception\\DuplicateKeyException',
'Symfony\\Component\\Config\\Definition\\Exception\\Exception',
'Symfony\\Component\\Config\\Definition\\Exception\\ForbiddenOverwriteException',
'Symfony\\Component\\Config\\Definition\\Exception\\InvalidConfigurationException',
'Symfony\\Component\\Config\\Definition\\Exception\\InvalidDefinitionException',
'Symfony\\Component\\Config\\Definition\\Exception\\InvalidTypeException',
'Symfony\\Component\\Config\\Definition\\Exception\\UnsetKeyException',
'Symfony\\Component\\Config\\Definition\\FloatNode',
'Symfony\\Component\\Config\\Definition\\IntegerNode',
'Symfony\\Component\\Config\\Definition\\NodeInterface',
'Symfony\\Component\\Config\\Definition\\NumericNode',
'Symfony\\Component\\Config\\Definition\\Processor',
'Symfony\\Component\\Config\\Definition\\PrototypeNodeInterface',
'Symfony\\Component\\Config\\Definition\\PrototypedArrayNode',
'Symfony\\Component\\Config\\Definition\\ReferenceDumper',
'Symfony\\Component\\Config\\Definition\\ScalarNode',
'Symfony\\Component\\Config\\Definition\\VariableNode',
'Symfony\\Component\\Config\\Exception\\FileLoaderImportCircularReferenceException',
'Symfony\\Component\\Config\\Exception\\FileLoaderLoadException',
'Symfony\\Component\\Config\\FileLocator',
'Symfony\\Component\\Config\\FileLocatorInterface',
'Symfony\\Component\\Config\\Loader\\DelegatingLoader',
'Symfony\\Component\\Config\\Loader\\FileLoader',
'Symfony\\Component\\Config\\Loader\\Loader',
'Symfony\\Component\\Config\\Loader\\LoaderInterface',
'Symfony\\Component\\Config\\Loader\\LoaderResolver',
'Symfony\\Component\\Config\\Loader\\LoaderResolverInterface',
'Symfony\\Component\\Config\\Resource\\DirectoryResource',
'Symfony\\Component\\Config\\Resource\\FileResource',
'Symfony\\Component\\Config\\Resource\\ResourceInterface',
'Symfony\\Component\\Config\\Tests\\ConfigCacheFactoryTest',
'Symfony\\Component\\Config\\Tests\\ConfigCacheTest',
'Symfony\\Component\\Config\\Tests\\Definition\\ArrayNodeTest',
'Symfony\\Component\\Config\\Tests\\Definition\\BooleanNodeTest',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\ArrayNodeDefinitionTest',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\BarNodeDefinition',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\EnumNodeDefinitionTest',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\ExprBuilderTest',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\NodeBuilder',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\NodeBuilderTest',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\NumericNodeDefinitionTest',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\SomeNodeDefinition',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\TreeBuilderTest',
'Symfony\\Component\\Config\\Tests\\Definition\\Builder\\VariableNodeDefinition',
'Symfony\\Component\\Config\\Tests\\Definition\\Dumper\\XmlReferenceDumperTest',
'Symfony\\Component\\Config\\Tests\\Definition\\Dumper\\YamlReferenceDumperTest',
'Symfony\\Component\\Config\\Tests\\Definition\\EnumNodeTest',
'Symfony\\Component\\Config\\Tests\\Definition\\FinalizationTest',
'Symfony\\Component\\Config\\Tests\\Definition\\FloatNodeTest',
'Symfony\\Component\\Config\\Tests\\Definition\\IntegerNodeTest',
'Symfony\\Component\\Config\\Tests\\Definition\\MergeTest',
'Symfony\\Component\\Config\\Tests\\Definition\\NormalizationTest',
'Symfony\\Component\\Config\\Tests\\Definition\\PrototypedArrayNodeTest',
'Symfony\\Component\\Config\\Tests\\Definition\\ScalarNodeTest',
'Symfony\\Component\\Config\\Tests\\Exception\\FileLoaderLoadExceptionTest',
'Symfony\\Component\\Config\\Tests\\FileLocatorTest',
'Symfony\\Component\\Config\\Tests\\Fixtures\\Configuration\\ExampleConfiguration',
'Symfony\\Component\\Config\\Tests\\Loader\\DelegatingLoaderTest',
'Symfony\\Component\\Config\\Tests\\Loader\\FileLoaderTest',
'Symfony\\Component\\Config\\Tests\\Loader\\LoaderResolverTest',
'Symfony\\Component\\Config\\Tests\\Loader\\LoaderTest',
'Symfony\\Component\\Config\\Tests\\Loader\\ProjectLoader1',
'Symfony\\Component\\Config\\Tests\\Loader\\TestFileLoader',
'Symfony\\Component\\Config\\Tests\\Loader\\Validator',
'Symfony\\Component\\Config\\Tests\\Loader\\XmlUtilsTest',
'Symfony\\Component\\Config\\Tests\\Resource\\DirectoryResourceTest',
'Symfony\\Component\\Config\\Tests\\Resource\\FileResourceTest',
'Symfony\\Component\\Config\\Util\\XmlUtils',
'Symfony\\Component\\Console\\Application',
'Symfony\\Component\\Console\\Command\\Command',
'Symfony\\Component\\Console\\Command\\HelpCommand',
'Symfony\\Component\\Console\\Command\\ListCommand',
'Symfony\\Component\\Console\\ConsoleEvents',
'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription',
'Symfony\\Component\\Console\\Descriptor\\Descriptor',
'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface',
'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor',
'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor',
'Symfony\\Component\\Console\\Descriptor\\TextDescriptor',
'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor',
'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent',
'Symfony\\Component\\Console\\Event\\ConsoleEvent',
'Symfony\\Component\\Console\\Event\\ConsoleExceptionEvent',
'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent',
'Symfony\\Component\\Console\\Formatter\\OutputFormatter',
'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface',
'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle',
'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface',
'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack',
'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper',
'Symfony\\Component\\Console\\Helper\\DescriptorHelper',
'Symfony\\Component\\Console\\Helper\\DialogHelper',
'Symfony\\Component\\Console\\Helper\\FormatterHelper',
'Symfony\\Component\\Console\\Helper\\Helper',
'Symfony\\Component\\Console\\Helper\\HelperInterface',
'Symfony\\Component\\Console\\Helper\\HelperSet',
'Symfony\\Component\\Console\\Helper\\InputAwareHelper',
'Symfony\\Component\\Console\\Helper\\ProcessHelper',
'Symfony\\Component\\Console\\Helper\\ProgressBar',
'Symfony\\Component\\Console\\Helper\\ProgressHelper',
'Symfony\\Component\\Console\\Helper\\QuestionHelper',
'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper',
'Symfony\\Component\\Console\\Helper\\Table',
'Symfony\\Component\\Console\\Helper\\TableCell',
'Symfony\\Component\\Console\\Helper\\TableHelper',
'Symfony\\Component\\Console\\Helper\\TableSeparator',
'Symfony\\Component\\Console\\Helper\\TableStyle',
'Symfony\\Component\\Console\\Input\\ArgvInput',
'Symfony\\Component\\Console\\Input\\ArrayInput',
'Symfony\\Component\\Console\\Input\\Input',
'Symfony\\Component\\Console\\Input\\InputArgument',
'Symfony\\Component\\Console\\Input\\InputAwareInterface',
'Symfony\\Component\\Console\\Input\\InputDefinition',
'Symfony\\Component\\Console\\Input\\InputInterface',
'Symfony\\Component\\Console\\Input\\InputOption',
'Symfony\\Component\\Console\\Input\\StringInput',
'Symfony\\Component\\Console\\Logger\\ConsoleLogger',
'Symfony\\Component\\Console\\Output\\BufferedOutput',
'Symfony\\Component\\Console\\Output\\ConsoleOutput',
'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface',
'Symfony\\Component\\Console\\Output\\NullOutput',
'Symfony\\Component\\Console\\Output\\Output',
'Symfony\\Component\\Console\\Output\\OutputInterface',
'Symfony\\Component\\Console\\Output\\StreamOutput',
'Symfony\\Component\\Console\\Question\\ChoiceQuestion',
'Symfony\\Component\\Console\\Question\\ConfirmationQuestion',
'Symfony\\Component\\Console\\Question\\Question',
'Symfony\\Component\\Console\\Shell',
'Symfony\\Component\\Console\\Style\\OutputStyle',
'Symfony\\Component\\Console\\Style\\StyleInterface',
'Symfony\\Component\\Console\\Style\\SymfonyStyle',
'Symfony\\Component\\Console\\Tester\\ApplicationTester',
'Symfony\\Component\\Console\\Tester\\CommandTester',
'Symfony\\Component\\Console\\Tests\\ApplicationTest',
'Symfony\\Component\\Console\\Tests\\Command\\CommandTest',
'Symfony\\Component\\Console\\Tests\\Command\\HelpCommandTest',
'Symfony\\Component\\Console\\Tests\\Command\\ListCommandTest',
'Symfony\\Component\\Console\\Tests\\CustomApplication',
'Symfony\\Component\\Console\\Tests\\CustomDefaultCommandApplication',
'Symfony\\Component\\Console\\Tests\\Descriptor\\AbstractDescriptorTest',
'Symfony\\Component\\Console\\Tests\\Descriptor\\JsonDescriptorTest',
'Symfony\\Component\\Console\\Tests\\Descriptor\\MarkdownDescriptorTest',
'Symfony\\Component\\Console\\Tests\\Descriptor\\ObjectsProvider',
'Symfony\\Component\\Console\\Tests\\Descriptor\\TextDescriptorTest',
'Symfony\\Component\\Console\\Tests\\Descriptor\\XmlDescriptorTest',
'Symfony\\Component\\Console\\Tests\\Fixtures\\DescriptorApplication1',
'Symfony\\Component\\Console\\Tests\\Fixtures\\DescriptorApplication2',
'Symfony\\Component\\Console\\Tests\\Fixtures\\DescriptorCommand1',
'Symfony\\Component\\Console\\Tests\\Fixtures\\DescriptorCommand2',
'Symfony\\Component\\Console\\Tests\\Fixtures\\DummyOutput',
'Symfony\\Component\\Console\\Tests\\Formatter\\OutputFormatterStyleStackTest',
'Symfony\\Component\\Console\\Tests\\Formatter\\OutputFormatterStyleTest',
'Symfony\\Component\\Console\\Tests\\Formatter\\OutputFormatterTest',
'Symfony\\Component\\Console\\Tests\\Formatter\\TableCell',
'Symfony\\Component\\Console\\Tests\\Helper\\FormatterHelperTest',
'Symfony\\Component\\Console\\Tests\\Helper\\HelperSetTest',
'Symfony\\Component\\Console\\Tests\\Helper\\LegacyDialogHelperTest',
'Symfony\\Component\\Console\\Tests\\Helper\\LegacyProgressHelperTest',
'Symfony\\Component\\Console\\Tests\\Helper\\LegacyTableHelperTest',
'Symfony\\Component\\Console\\Tests\\Helper\\ProcessHelperTest',
'Symfony\\Component\\Console\\Tests\\Helper\\ProgressBarTest',
'Symfony\\Component\\Console\\Tests\\Helper\\QuestionHelperTest',
'Symfony\\Component\\Console\\Tests\\Helper\\TableStyleTest',
'Symfony\\Component\\Console\\Tests\\Helper\\TableTest',
'Symfony\\Component\\Console\\Tests\\Input\\ArgvInputTest',
'Symfony\\Component\\Console\\Tests\\Input\\ArrayInputTest',
'Symfony\\Component\\Console\\Tests\\Input\\InputArgumentTest',
'Symfony\\Component\\Console\\Tests\\Input\\InputDefinitionTest',
'Symfony\\Component\\Console\\Tests\\Input\\InputOptionTest',
'Symfony\\Component\\Console\\Tests\\Input\\InputTest',
'Symfony\\Component\\Console\\Tests\\Input\\StringInputTest',
'Symfony\\Component\\Console\\Tests\\Logger\\ConsoleLoggerTest',
'Symfony\\Component\\Console\\Tests\\Output\\ConsoleOutputTest',
'Symfony\\Component\\Console\\Tests\\Output\\NullOutputTest',
'Symfony\\Component\\Console\\Tests\\Output\\OutputTest',
'Symfony\\Component\\Console\\Tests\\Output\\StreamOutputTest',
'Symfony\\Component\\Console\\Tests\\Output\\TestOutput',
'Symfony\\Component\\Console\\Tests\\Style\\SymfonyStyleTest',
'Symfony\\Component\\Console\\Tests\\Style\\SymfonyStyleWithForcedLineLength',
'Symfony\\Component\\Console\\Tests\\Tester\\ApplicationTesterTest',
'Symfony\\Component\\Console\\Tests\\Tester\\CommandTesterTest',
'Symfony\\Component\\CssSelector\\CssSelector',
'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface',
'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException',
'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException',
'Symfony\\Component\\CssSelector\\Exception\\ParseException',
'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException',
'Symfony\\Component\\CssSelector\\Node\\AbstractNode',
'Symfony\\Component\\CssSelector\\Node\\AttributeNode',
'Symfony\\Component\\CssSelector\\Node\\ClassNode',
'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode',
'Symfony\\Component\\CssSelector\\Node\\ElementNode',
'Symfony\\Component\\CssSelector\\Node\\FunctionNode',
'Symfony\\Component\\CssSelector\\Node\\HashNode',
'Symfony\\Component\\CssSelector\\Node\\NegationNode',
'Symfony\\Component\\CssSelector\\Node\\NodeInterface',
'Symfony\\Component\\CssSelector\\Node\\PseudoNode',
'Symfony\\Component\\CssSelector\\Node\\SelectorNode',
'Symfony\\Component\\CssSelector\\Node\\Specificity',
'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler',
'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface',
'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler',
'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler',
'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler',
'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler',
'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler',
'Symfony\\Component\\CssSelector\\Parser\\Parser',
'Symfony\\Component\\CssSelector\\Parser\\ParserInterface',
'Symfony\\Component\\CssSelector\\Parser\\Reader',
'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser',
'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser',
'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser',
'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser',
'Symfony\\Component\\CssSelector\\Parser\\Token',
'Symfony\\Component\\CssSelector\\Parser\\TokenStream',
'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer',
'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping',
'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns',
'Symfony\\Component\\CssSelector\\Tests\\CssSelectorTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\AbstractNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\AttributeNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\ClassNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\CombinedSelectorNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\ElementNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\FunctionNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\HashNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\NegationNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\PseudoNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\SelectorNodeTest',
'Symfony\\Component\\CssSelector\\Tests\\Node\\SpecificityTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\AbstractHandlerTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\CommentHandlerTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\HashHandlerTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\IdentifierHandlerTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\NumberHandlerTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\StringHandlerTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\WhitespaceHandlerTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\ParserTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\ReaderTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ClassParserTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ElementParserTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\EmptyStringParserTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\HashParserTest',
'Symfony\\Component\\CssSelector\\Tests\\Parser\\TokenStreamTest',
'Symfony\\Component\\CssSelector\\Tests\\XPath\\TranslatorTest',
'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension',
'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension',
'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension',
'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface',
'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension',
'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension',
'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension',
'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension',
'Symfony\\Component\\CssSelector\\XPath\\Translator',
'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface',
'Symfony\\Component\\CssSelector\\XPath\\XPathExpr',
'Symfony\\Component\\Debug\\Debug',
'Symfony\\Component\\Debug\\DebugClassLoader',
'Symfony\\Component\\Debug\\ErrorHandler',
'Symfony\\Component\\Debug\\ErrorHandlerCanary',
'Symfony\\Component\\Debug\\ExceptionHandler',
'Symfony\\Component\\Debug\\Exception\\ClassNotFoundException',
'Symfony\\Component\\Debug\\Exception\\ContextErrorException',
'Symfony\\Component\\Debug\\Exception\\DummyException',
'Symfony\\Component\\Debug\\Exception\\FatalErrorException',
'Symfony\\Component\\Debug\\Exception\\FatalThrowableError',
'Symfony\\Component\\Debug\\Exception\\FlattenException',
'Symfony\\Component\\Debug\\Exception\\OutOfMemoryException',
'Symfony\\Component\\Debug\\Exception\\UndefinedFunctionException',
'Symfony\\Component\\Debug\\Exception\\UndefinedMethodException',
'Symfony\\Component\\Debug\\FatalErrorHandler\\ClassNotFoundFatalErrorHandler',
'Symfony\\Component\\Debug\\FatalErrorHandler\\FatalErrorHandlerInterface',
'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedFunctionFatalErrorHandler',
'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedMethodFatalErrorHandler',
'Symfony\\Component\\Debug\\Tests\\ClassLoader',
'Symfony\\Component\\Debug\\Tests\\DebugClassLoaderTest',
'Symfony\\Component\\Debug\\Tests\\ErrorHandlerTest',
'Symfony\\Component\\Debug\\Tests\\ExceptionHandlerTest',
'Symfony\\Component\\Debug\\Tests\\Exception\\FlattenExceptionTest',
'Symfony\\Component\\Debug\\Tests\\FatalErrorHandler\\ClassNotFoundFatalErrorHandlerTest',
'Symfony\\Component\\Debug\\Tests\\FatalErrorHandler\\UndefinedFunctionFatalErrorHandlerTest',
'Symfony\\Component\\Debug\\Tests\\FatalErrorHandler\\UndefinedMethodFatalErrorHandlerTest',
'Symfony\\Component\\Debug\\Tests\\Fixtures2\\RequiredTwice',
'Symfony\\Component\\Debug\\Tests\\Fixtures\\CaseMismatch',
'Symfony\\Component\\Debug\\Tests\\Fixtures\\DeprecatedClass',
'Symfony\\Component\\Debug\\Tests\\Fixtures\\DeprecatedInterface',
'Symfony\\Component\\Debug\\Tests\\Fixtures\\NotPSR0',
'Symfony\\Component\\Debug\\Tests\\Fixtures\\NotPSR0bis',
'Symfony\\Component\\Debug\\Tests\\Fixtures\\PSR4CaseMismatch',
'Symfony\\Component\\Debug\\Tests\\MockExceptionHandler',
'Symfony\\Component\\DependencyInjection\\Alias',
'Symfony\\Component\\DependencyInjection\\Compiler\\AnalyzeServiceReferencesPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\AutoAliasServicePass',
'Symfony\\Component\\DependencyInjection\\Compiler\\CheckCircularReferencesPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\CheckDefinitionValidityPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\CheckReferenceValidityPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\Compiler',
'Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface',
'Symfony\\Component\\DependencyInjection\\Compiler\\DecoratorServicePass',
'Symfony\\Component\\DependencyInjection\\Compiler\\ExtensionCompilerPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\InlineServiceDefinitionsPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\LoggingFormatter',
'Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\PassConfig',
'Symfony\\Component\\DependencyInjection\\Compiler\\RemoveAbstractDefinitionsPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\RemovePrivateAliasesPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\RemoveUnusedDefinitionsPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\RepeatablePassInterface',
'Symfony\\Component\\DependencyInjection\\Compiler\\RepeatedPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\ReplaceAliasByActualDefinitionPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveDefinitionTemplatesPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInvalidReferencesPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveParameterPlaceHoldersPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveReferencesToAliasesPass',
'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraph',
'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphEdge',
'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphNode',
'Symfony\\Component\\DependencyInjection\\Container',
'Symfony\\Component\\DependencyInjection\\ContainerAware',
'Symfony\\Component\\DependencyInjection\\ContainerAwareInterface',
'Symfony\\Component\\DependencyInjection\\ContainerAwareTrait',
'Symfony\\Component\\DependencyInjection\\ContainerBuilder',
'Symfony\\Component\\DependencyInjection\\ContainerInterface',
'Symfony\\Component\\DependencyInjection\\Definition',
'Symfony\\Component\\DependencyInjection\\DefinitionDecorator',
'Symfony\\Component\\DependencyInjection\\Dump\\Container',
'Symfony\\Component\\DependencyInjection\\Dumper\\Dumper',
'Symfony\\Component\\DependencyInjection\\Dumper\\DumperInterface',
'Symfony\\Component\\DependencyInjection\\Dumper\\GraphvizDumper',
'Symfony\\Component\\DependencyInjection\\Dumper\\PhpDumper',
'Symfony\\Component\\DependencyInjection\\Dumper\\XmlDumper',
'Symfony\\Component\\DependencyInjection\\Dumper\\YamlDumper',
'Symfony\\Component\\DependencyInjection\\Exception\\BadMethodCallException',
'Symfony\\Component\\DependencyInjection\\Exception\\ExceptionInterface',
'Symfony\\Component\\DependencyInjection\\Exception\\InactiveScopeException',
'Symfony\\Component\\DependencyInjection\\Exception\\InvalidArgumentException',
'Symfony\\Component\\DependencyInjection\\Exception\\LogicException',
'Symfony\\Component\\DependencyInjection\\Exception\\OutOfBoundsException',
'Symfony\\Component\\DependencyInjection\\Exception\\ParameterCircularReferenceException',
'Symfony\\Component\\DependencyInjection\\Exception\\ParameterNotFoundException',
'Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException',
'Symfony\\Component\\DependencyInjection\\Exception\\ScopeCrossingInjectionException',
'Symfony\\Component\\DependencyInjection\\Exception\\ScopeWideningInjectionException',
'Symfony\\Component\\DependencyInjection\\Exception\\ServiceCircularReferenceException',
'Symfony\\Component\\DependencyInjection\\Exception\\ServiceNotFoundException',
'Symfony\\Component\\DependencyInjection\\ExpressionLanguage',
'Symfony\\Component\\DependencyInjection\\ExpressionLanguageProvider',
'Symfony\\Component\\DependencyInjection\\Extension\\ConfigurationExtensionInterface',
'Symfony\\Component\\DependencyInjection\\Extension\\Extension',
'Symfony\\Component\\DependencyInjection\\Extension\\ExtensionInterface',
'Symfony\\Component\\DependencyInjection\\Extension\\PrependExtensionInterface',
'Symfony\\Component\\DependencyInjection\\IntrospectableContainerInterface',
'Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\InstantiatorInterface',
'Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\RealServiceInstantiator',
'Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\DumperInterface',
'Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\NullDumper',
'Symfony\\Component\\DependencyInjection\\Loader\\ClosureLoader',
'Symfony\\Component\\DependencyInjection\\Loader\\FileLoader',
'Symfony\\Component\\DependencyInjection\\Loader\\IniFileLoader',
'Symfony\\Component\\DependencyInjection\\Loader\\PhpFileLoader',
'Symfony\\Component\\DependencyInjection\\Loader\\XmlFileLoader',
'Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader',
'Symfony\\Component\\DependencyInjection\\Parameter',
'Symfony\\Component\\DependencyInjection\\ParameterBag\\FrozenParameterBag',
'Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBag',
'Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBagInterface',
'Symfony\\Component\\DependencyInjection\\Reference',
'Symfony\\Component\\DependencyInjection\\Scope',
'Symfony\\Component\\DependencyInjection\\ScopeInterface',
'Symfony\\Component\\DependencyInjection\\SimpleXMLElement',
'Symfony\\Component\\DependencyInjection\\TaggedContainerInterface',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\AnalyzeServiceReferencesPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\AutoAliasServicePassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\CheckCircularReferencesPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\CheckDefinitionValidityPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\CheckReferenceValidityPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\DecoratorServicePassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ExtensionCompilerPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\InlineServiceDefinitionsPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\IntegrationTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\LegacyResolveParameterPlaceHoldersPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\MergeExtensionConfigurationPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\RemoveUnusedDefinitionsPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ReplaceAliasByActualDefinitionPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ResolveDefinitionTemplatesPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ResolveInvalidReferencesPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ResolveParameterPlaceHoldersPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ResolveReferencesToAliasesPassTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ServiceClassDefault',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ServiceClassMariaDb',
'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ServiceClassMysql',
'Symfony\\Component\\DependencyInjection\\Tests\\ContainerBuilderTest',
'Symfony\\Component\\DependencyInjection\\Tests\\ContainerTest',
'Symfony\\Component\\DependencyInjection\\Tests\\CrossCheckTest',
'Symfony\\Component\\DependencyInjection\\Tests\\DefinitionDecoratorTest',
'Symfony\\Component\\DependencyInjection\\Tests\\DefinitionTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Dumper\\GraphvizDumperTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Dumper\\PhpDumperTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Dumper\\XmlDumperTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Dumper\\YamlDumperTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Extension\\ExtensionTest',
'Symfony\\Component\\DependencyInjection\\Tests\\FooClass',
'Symfony\\Component\\DependencyInjection\\Tests\\LazyProxy\\Instantiator\\RealServiceInstantiatorTest',
'Symfony\\Component\\DependencyInjection\\Tests\\LazyProxy\\PhpDumper\\NullDumperTest',
'Symfony\\Component\\DependencyInjection\\Tests\\LegacyContainerBuilderTest',
'Symfony\\Component\\DependencyInjection\\Tests\\LegacyDefinitionTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Loader\\ClosureLoaderTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Loader\\IniFileLoaderTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Loader\\PhpFileLoaderTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Loader\\XmlFileLoaderTest',
'Symfony\\Component\\DependencyInjection\\Tests\\Loader\\YamlFileLoaderTest',
'Symfony\\Component\\DependencyInjection\\Tests\\ParameterBag\\FrozenParameterBagTest',
'Symfony\\Component\\DependencyInjection\\Tests\\ParameterBag\\ParameterBagTest',
'Symfony\\Component\\DependencyInjection\\Tests\\ParameterTest',
'Symfony\\Component\\DependencyInjection\\Tests\\ProjectContainer',
'Symfony\\Component\\DependencyInjection\\Tests\\ProjectServiceContainer',
'Symfony\\Component\\DependencyInjection\\Tests\\ReferenceTest',
'Symfony\\Component\\DependencyInjection\\Variable',
'Symfony\\Component\\DomCrawler\\Crawler',
'Symfony\\Component\\DomCrawler\\Field\\ChoiceFormField',
'Symfony\\Component\\DomCrawler\\Field\\FileFormField',
'Symfony\\Component\\DomCrawler\\Field\\FormField',
'Symfony\\Component\\DomCrawler\\Field\\InputFormField',
'Symfony\\Component\\DomCrawler\\Field\\TextareaFormField',
'Symfony\\Component\\DomCrawler\\Form',
'Symfony\\Component\\DomCrawler\\FormFieldRegistry',
'Symfony\\Component\\DomCrawler\\Link',
'Symfony\\Component\\DomCrawler\\Tests\\CrawlerTest',
'Symfony\\Component\\DomCrawler\\Tests\\Field\\ChoiceFormFieldTest',
'Symfony\\Component\\DomCrawler\\Tests\\Field\\FileFormFieldTest',
'Symfony\\Component\\DomCrawler\\Tests\\Field\\FormFieldTest',
'Symfony\\Component\\DomCrawler\\Tests\\Field\\FormFieldTestCase',
'Symfony\\Component\\DomCrawler\\Tests\\Field\\InputFormFieldTest',
'Symfony\\Component\\DomCrawler\\Tests\\Field\\TextareaFormFieldTest',
'Symfony\\Component\\DomCrawler\\Tests\\FormTest',
'Symfony\\Component\\DomCrawler\\Tests\\LinkTest',
'Symfony\\Component\\EventDispatcher\\ContainerAwareEventDispatcher',
'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher',
'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface',
'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener',
'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass',
'Symfony\\Component\\EventDispatcher\\Event',
'Symfony\\Component\\EventDispatcher\\EventDispatcher',
'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface',
'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface',
'Symfony\\Component\\EventDispatcher\\GenericEvent',
'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher',
'Symfony\\Component\\EventDispatcher\\Tests\\AbstractEventDispatcherTest',
'Symfony\\Component\\EventDispatcher\\Tests\\CallableClass',
'Symfony\\Component\\EventDispatcher\\Tests\\ContainerAwareEventDispatcherTest',
'Symfony\\Component\\EventDispatcher\\Tests\\Debug\\EventSubscriber',
'Symfony\\Component\\EventDispatcher\\Tests\\Debug\\TraceableEventDispatcherTest',
'Symfony\\Component\\EventDispatcher\\Tests\\DependencyInjection\\RegisterListenersPassTest',
'Symfony\\Component\\EventDispatcher\\Tests\\DependencyInjection\\SubscriberService',
'Symfony\\Component\\EventDispatcher\\Tests\\EventDispatcherTest',
'Symfony\\Component\\EventDispatcher\\Tests\\EventTest',
'Symfony\\Component\\EventDispatcher\\Tests\\GenericEventTest',
'Symfony\\Component\\EventDispatcher\\Tests\\ImmutableEventDispatcherTest',
'Symfony\\Component\\EventDispatcher\\Tests\\Service',
'Symfony\\Component\\EventDispatcher\\Tests\\SubscriberService',
'Symfony\\Component\\EventDispatcher\\Tests\\TestEventListener',
'Symfony\\Component\\EventDispatcher\\Tests\\TestEventSubscriber',
'Symfony\\Component\\EventDispatcher\\Tests\\TestEventSubscriberWithMultipleListeners',
'Symfony\\Component\\EventDispatcher\\Tests\\TestEventSubscriberWithPriorities',
'Symfony\\Component\\EventDispatcher\\Tests\\TestWithDispatcher',
'Symfony\\Component\\ExpressionLanguage\\Compiler',
'Symfony\\Component\\ExpressionLanguage\\Expression',
'Symfony\\Component\\ExpressionLanguage\\ExpressionFunction',
'Symfony\\Component\\ExpressionLanguage\\ExpressionFunctionProviderInterface',
'Symfony\\Component\\ExpressionLanguage\\ExpressionLanguage',
'Symfony\\Component\\ExpressionLanguage\\Lexer',
'Symfony\\Component\\ExpressionLanguage\\Node\\ArgumentsNode',
'Symfony\\Component\\ExpressionLanguage\\Node\\ArrayNode',
'Symfony\\Component\\ExpressionLanguage\\Node\\BinaryNode',
'Symfony\\Component\\ExpressionLanguage\\Node\\ConditionalNode',
'Symfony\\Component\\ExpressionLanguage\\Node\\ConstantNode',
'Symfony\\Component\\ExpressionLanguage\\Node\\FunctionNode',
'Symfony\\Component\\ExpressionLanguage\\Node\\GetAttrNode',
'Symfony\\Component\\ExpressionLanguage\\Node\\NameNode',
'Symfony\\Component\\ExpressionLanguage\\Node\\Node',
'Symfony\\Component\\ExpressionLanguage\\Node\\UnaryNode',
'Symfony\\Component\\ExpressionLanguage\\ParsedExpression',
'Symfony\\Component\\ExpressionLanguage\\Parser',
'Symfony\\Component\\ExpressionLanguage\\ParserCache\\ArrayParserCache',
'Symfony\\Component\\ExpressionLanguage\\ParserCache\\ParserCacheInterface',
'Symfony\\Component\\ExpressionLanguage\\SerializedParsedExpression',
'Symfony\\Component\\ExpressionLanguage\\SyntaxError',
'Symfony\\Component\\ExpressionLanguage\\Tests\\ExpressionLanguageTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\ExpressionTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Fixtures\\TestProvider',
'Symfony\\Component\\ExpressionLanguage\\Tests\\LexerTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\AbstractNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\ArgumentsNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\ArrayNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\BinaryNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\ConditionalNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\ConstantNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\FunctionNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\GetAttrNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\NameNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\NodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\Obj',
'Symfony\\Component\\ExpressionLanguage\\Tests\\Node\\UnaryNodeTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\ParsedExpressionTest',
'Symfony\\Component\\ExpressionLanguage\\Tests\\ParserTest',
'Symfony\\Component\\ExpressionLanguage\\Token',
'Symfony\\Component\\ExpressionLanguage\\TokenStream',
'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface',
'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException',
'Symfony\\Component\\Filesystem\\Exception\\IOException',
'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface',
'Symfony\\Component\\Filesystem\\Filesystem',
'Symfony\\Component\\Filesystem\\LockHandler',
'Symfony\\Component\\Filesystem\\Tests\\ExceptionTest',
'Symfony\\Component\\Filesystem\\Tests\\FilesystemTest',
'Symfony\\Component\\Filesystem\\Tests\\FilesystemTestCase',
'Symfony\\Component\\Filesystem\\Tests\\LockHandlerTest',
'Symfony\\Component\\Finder\\Adapter\\AbstractAdapter',
'Symfony\\Component\\Finder\\Adapter\\AbstractFindAdapter',
'Symfony\\Component\\Finder\\Adapter\\AdapterInterface',
'Symfony\\Component\\Finder\\Adapter\\BsdFindAdapter',
'Symfony\\Component\\Finder\\Adapter\\GnuFindAdapter',
'Symfony\\Component\\Finder\\Adapter\\PhpAdapter',
'Symfony\\Component\\Finder\\Comparator\\Comparator',
'Symfony\\Component\\Finder\\Comparator\\DateComparator',
'Symfony\\Component\\Finder\\Comparator\\NumberComparator',
'Symfony\\Component\\Finder\\Exception\\AccessDeniedException',
'Symfony\\Component\\Finder\\Exception\\AdapterFailureException',
'Symfony\\Component\\Finder\\Exception\\ExceptionInterface',
'Symfony\\Component\\Finder\\Exception\\OperationNotPermitedException',
'Symfony\\Component\\Finder\\Exception\\ShellCommandFailureException',
'Symfony\\Component\\Finder\\Expression\\Expression',
'Symfony\\Component\\Finder\\Expression\\Glob',
'Symfony\\Component\\Finder\\Expression\\Regex',
'Symfony\\Component\\Finder\\Expression\\ValueInterface',
'Symfony\\Component\\Finder\\Finder',
'Symfony\\Component\\Finder\\Glob',
'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\FilePathsIterator',
'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\FilterIterator',
'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator',
'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator',
'Symfony\\Component\\Finder\\Iterator\\SortableIterator',
'Symfony\\Component\\Finder\\Shell\\Command',
'Symfony\\Component\\Finder\\Shell\\Shell',
'Symfony\\Component\\Finder\\SplFileInfo',
'Symfony\\Component\\Finder\\Tests\\BsdFinderTest',
'Symfony\\Component\\Finder\\Tests\\Comparator\\ComparatorTest',
'Symfony\\Component\\Finder\\Tests\\Comparator\\DateComparatorTest',
'Symfony\\Component\\Finder\\Tests\\Comparator\\NumberComparatorTest',
'Symfony\\Component\\Finder\\Tests\\Expression\\ExpressionTest',
'Symfony\\Component\\Finder\\Tests\\Expression\\GlobTest',
'Symfony\\Component\\Finder\\Tests\\Expression\\RegexTest',
'Symfony\\Component\\Finder\\Tests\\FakeAdapter\\DummyAdapter',
'Symfony\\Component\\Finder\\Tests\\FakeAdapter\\FailingAdapter',
'Symfony\\Component\\Finder\\Tests\\FakeAdapter\\NamedAdapter',
'Symfony\\Component\\Finder\\Tests\\FakeAdapter\\UnsupportedAdapter',
'Symfony\\Component\\Finder\\Tests\\FinderTest',
'Symfony\\Component\\Finder\\Tests\\GlobTest',
'Symfony\\Component\\Finder\\Tests\\GnuFinderTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\CustomFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\DateRangeFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\DepthRangeFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\ExcludeDirectoryFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\FilePathsIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\FileTypeFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\FilecontentFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\FilenameFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\FilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\InnerNameIterator',
'Symfony\\Component\\Finder\\Tests\\Iterator\\InnerSizeIterator',
'Symfony\\Component\\Finder\\Tests\\Iterator\\InnerTypeIterator',
'Symfony\\Component\\Finder\\Tests\\Iterator\\Iterator',
'Symfony\\Component\\Finder\\Tests\\Iterator\\IteratorTestCase',
'Symfony\\Component\\Finder\\Tests\\Iterator\\MockFileListIterator',
'Symfony\\Component\\Finder\\Tests\\Iterator\\MockSplFileInfo',
'Symfony\\Component\\Finder\\Tests\\Iterator\\MultiplePcreFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\PathFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\RealIteratorTestCase',
'Symfony\\Component\\Finder\\Tests\\Iterator\\RecursiveDirectoryIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\SizeRangeFilterIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\SortableIteratorTest',
'Symfony\\Component\\Finder\\Tests\\Iterator\\TestMultiplePcreFilterIterator',
'Symfony\\Component\\Finder\\Tests\\Shell\\CommandTest',
'Symfony\\Component\\Form\\AbstractExtension',
'Symfony\\Component\\Form\\AbstractRendererEngine',
'Symfony\\Component\\Form\\AbstractType',
'Symfony\\Component\\Form\\AbstractTypeExtension',
'Symfony\\Component\\Form\\Button',
'Symfony\\Component\\Form\\ButtonBuilder',
'Symfony\\Component\\Form\\ButtonTypeInterface',
'Symfony\\Component\\Form\\CallbackTransformer',
'Symfony\\Component\\Form\\ChoiceList\\ArrayChoiceList',
'Symfony\\Component\\Form\\ChoiceList\\ArrayKeyChoiceList',
'Symfony\\Component\\Form\\ChoiceList\\ChoiceListInterface',
'Symfony\\Component\\Form\\ChoiceList\\Factory\\CachingFactoryDecorator',
'Symfony\\Component\\Form\\ChoiceList\\Factory\\ChoiceListFactoryInterface',
'Symfony\\Component\\Form\\ChoiceList\\Factory\\DefaultChoiceListFactory',
'Symfony\\Component\\Form\\ChoiceList\\Factory\\PropertyAccessDecorator',
'Symfony\\Component\\Form\\ChoiceList\\LazyChoiceList',
'Symfony\\Component\\Form\\ChoiceList\\LegacyChoiceListAdapter',
'Symfony\\Component\\Form\\ChoiceList\\Loader\\ChoiceLoaderInterface',
'Symfony\\Component\\Form\\ChoiceList\\View\\ChoiceGroupView',
'Symfony\\Component\\Form\\ChoiceList\\View\\ChoiceListView',
'Symfony\\Component\\Form\\ChoiceList\\View\\ChoiceView',
'Symfony\\Component\\Form\\ClickableInterface',
'Symfony\\Component\\Form\\DataMapperInterface',
'Symfony\\Component\\Form\\DataTransformerInterface',
'Symfony\\Component\\Form\\Deprecated\\FormEvents',
'Symfony\\Component\\Form\\Exception\\AlreadyBoundException',
'Symfony\\Component\\Form\\Exception\\AlreadySubmittedException',
'Symfony\\Component\\Form\\Exception\\BadMethodCallException',
'Symfony\\Component\\Form\\Exception\\ErrorMappingException',
'Symfony\\Component\\Form\\Exception\\ExceptionInterface',
'Symfony\\Component\\Form\\Exception\\InvalidArgumentException',
'Symfony\\Component\\Form\\Exception\\InvalidConfigurationException',
'Symfony\\Component\\Form\\Exception\\LogicException',
'Symfony\\Component\\Form\\Exception\\OutOfBoundsException',
'Symfony\\Component\\Form\\Exception\\RuntimeException',
'Symfony\\Component\\Form\\Exception\\StringCastException',
'Symfony\\Component\\Form\\Exception\\TransformationFailedException',
'Symfony\\Component\\Form\\Exception\\UnexpectedTypeException',
'Symfony\\Component\\Form\\Extension\\Core\\ChoiceList\\ChoiceList',
'Symfony\\Component\\Form\\Extension\\Core\\ChoiceList\\ChoiceListInterface',
'Symfony\\Component\\Form\\Extension\\Core\\ChoiceList\\LazyChoiceList',
'Symfony\\Component\\Form\\Extension\\Core\\ChoiceList\\ObjectChoiceList',
'Symfony\\Component\\Form\\Extension\\Core\\ChoiceList\\SimpleChoiceList',
'Symfony\\Component\\Form\\Extension\\Core\\CoreExtension',
'Symfony\\Component\\Form\\Extension\\Core\\DataMapper\\CheckboxListMapper',
'Symfony\\Component\\Form\\Extension\\Core\\DataMapper\\PropertyPathMapper',
'Symfony\\Component\\Form\\Extension\\Core\\DataMapper\\RadioListMapper',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ArrayToPartsTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\BaseDateTimeTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\BooleanToStringTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ChoiceToBooleanArrayTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ChoiceToValueTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ChoicesToBooleanArrayTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ChoicesToValuesTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DataTransformerChain',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToArrayTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToLocalizedStringTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToRfc3339Transformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToStringTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToTimestampTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\IntegerToLocalizedStringTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\MoneyToLocalizedStringTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\NumberToLocalizedStringTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\PercentToLocalizedStringTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ValueToDuplicatesTransformer',
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\FixCheckboxInputListener',
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\FixRadioInputListener',
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\FixUrlProtocolListener',
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\MergeCollectionListener',
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\ResizeFormListener',
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\TrimListener',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\BaseType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\BirthdayType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ButtonType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CheckboxType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ChoiceType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CollectionType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CountryType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CurrencyType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\DateTimeType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\DateType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\EmailType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\FileType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\FormType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\HiddenType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\IntegerType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\LanguageType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\LocaleType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\MoneyType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\NumberType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\PasswordType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\PercentType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\RadioType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\RepeatedType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ResetType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\SearchType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\SubmitType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TextType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TextareaType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TimeType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TimezoneType',
'Symfony\\Component\\Form\\Extension\\Core\\Type\\UrlType',
'Symfony\\Component\\Form\\Extension\\Core\\View\\ChoiceView',
'Symfony\\Component\\Form\\Extension\\Csrf\\CsrfExtension',
'Symfony\\Component\\Form\\Extension\\Csrf\\CsrfProvider\\CsrfProviderAdapter',
'Symfony\\Component\\Form\\Extension\\Csrf\\CsrfProvider\\CsrfProviderInterface',
'Symfony\\Component\\Form\\Extension\\Csrf\\CsrfProvider\\CsrfTokenManagerAdapter',
'Symfony\\Component\\Form\\Extension\\Csrf\\CsrfProvider\\DefaultCsrfProvider',
'Symfony\\Component\\Form\\Extension\\Csrf\\CsrfProvider\\SessionCsrfProvider',
'Symfony\\Component\\Form\\Extension\\Csrf\\EventListener\\CsrfValidationListener',
'Symfony\\Component\\Form\\Extension\\Csrf\\Type\\FormTypeCsrfExtension',
'Symfony\\Component\\Form\\Extension\\DataCollector\\DataCollectorExtension',
'Symfony\\Component\\Form\\Extension\\DataCollector\\EventListener\\DataCollectorListener',
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollector',
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollectorInterface',
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataExtractor',
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataExtractorInterface',
'Symfony\\Component\\Form\\Extension\\DataCollector\\Proxy\\ResolvedTypeDataCollectorProxy',
'Symfony\\Component\\Form\\Extension\\DataCollector\\Proxy\\ResolvedTypeFactoryDataCollectorProxy',
'Symfony\\Component\\Form\\Extension\\DataCollector\\Type\\DataCollectorTypeExtension',
'Symfony\\Component\\Form\\Extension\\DependencyInjection\\DependencyInjectionExtension',
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\EventListener\\BindRequestListener',
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\HttpFoundationExtension',
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\HttpFoundationRequestHandler',
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\Type\\FormTypeHttpFoundationExtension',
'Symfony\\Component\\Form\\Extension\\Templating\\TemplatingExtension',
'Symfony\\Component\\Form\\Extension\\Templating\\TemplatingRendererEngine',
'Symfony\\Component\\Form\\Extension\\Validator\\Constraints\\Form',
'Symfony\\Component\\Form\\Extension\\Validator\\Constraints\\FormValidator',
'Symfony\\Component\\Form\\Extension\\Validator\\EventListener\\ValidationListener',
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\BaseValidatorExtension',
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\FormTypeValidatorExtension',
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\RepeatedTypeValidatorExtension',
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\SubmitTypeValidatorExtension',
'Symfony\\Component\\Form\\Extension\\Validator\\Util\\ServerParams',
'Symfony\\Component\\Form\\Extension\\Validator\\ValidatorExtension',
'Symfony\\Component\\Form\\Extension\\Validator\\ValidatorTypeGuesser',
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\MappingRule',
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\RelativePath',
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationMapper',
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationMapperInterface',
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationPath',
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationPathIterator',
'Symfony\\Component\\Form\\Form',
'Symfony\\Component\\Form\\FormBuilder',
'Symfony\\Component\\Form\\FormBuilderInterface',
'Symfony\\Component\\Form\\FormConfigBuilder',
'Symfony\\Component\\Form\\FormConfigBuilderInterface',
'Symfony\\Component\\Form\\FormConfigInterface',
'Symfony\\Component\\Form\\FormError',
'Symfony\\Component\\Form\\FormErrorIterator',
'Symfony\\Component\\Form\\FormEvent',
'Symfony\\Component\\Form\\FormEvents',
'Symfony\\Component\\Form\\FormExtensionInterface',
'Symfony\\Component\\Form\\FormFactory',
'Symfony\\Component\\Form\\FormFactoryBuilder',
'Symfony\\Component\\Form\\FormFactoryBuilderInterface',
'Symfony\\Component\\Form\\FormFactoryInterface',
'Symfony\\Component\\Form\\FormInterface',
'Symfony\\Component\\Form\\FormRegistry',
'Symfony\\Component\\Form\\FormRegistryInterface',
'Symfony\\Component\\Form\\FormRenderer',
'Symfony\\Component\\Form\\FormRendererEngineInterface',
'Symfony\\Component\\Form\\FormRendererInterface',
'Symfony\\Component\\Form\\FormTypeExtensionInterface',
'Symfony\\Component\\Form\\FormTypeGuesserChain',
'Symfony\\Component\\Form\\FormTypeGuesserInterface',
'Symfony\\Component\\Form\\FormTypeInterface',
'Symfony\\Component\\Form\\FormView',
'Symfony\\Component\\Form\\Forms',
'Symfony\\Component\\Form\\Guess\\Guess',
'Symfony\\Component\\Form\\Guess\\TypeGuess',
'Symfony\\Component\\Form\\Guess\\ValueGuess',
'Symfony\\Component\\Form\\NativeRequestHandler',
'Symfony\\Component\\Form\\PreloadedExtension',
'Symfony\\Component\\Form\\RequestHandlerInterface',
'Symfony\\Component\\Form\\ResolvedFormType',
'Symfony\\Component\\Form\\ResolvedFormTypeFactory',
'Symfony\\Component\\Form\\ResolvedFormTypeFactoryInterface',
'Symfony\\Component\\Form\\ResolvedFormTypeInterface',
'Symfony\\Component\\Form\\ReversedTransformer',
'Symfony\\Component\\Form\\SubmitButton',
'Symfony\\Component\\Form\\SubmitButtonBuilder',
'Symfony\\Component\\Form\\SubmitButtonTypeInterface',
'Symfony\\Component\\Form\\Test\\DeprecationErrorHandler',
'Symfony\\Component\\Form\\Test\\FormBuilderInterface',
'Symfony\\Component\\Form\\Test\\FormIntegrationTestCase',
'Symfony\\Component\\Form\\Test\\FormInterface',
'Symfony\\Component\\Form\\Test\\FormPerformanceTestCase',
'Symfony\\Component\\Form\\Test\\TypeTestCase',
'Symfony\\Component\\Form\\Tests\\AbstractBootstrap3LayoutTest',
'Symfony\\Component\\Form\\Tests\\AbstractDivLayoutTest',
'Symfony\\Component\\Form\\Tests\\AbstractExtensionTest',
'Symfony\\Component\\Form\\Tests\\AbstractFormTest',
'Symfony\\Component\\Form\\Tests\\AbstractLayoutTest',
'Symfony\\Component\\Form\\Tests\\AbstractRequestHandlerTest',
'Symfony\\Component\\Form\\Tests\\AbstractTableLayoutTest',
'Symfony\\Component\\Form\\Tests\\ButtonTest',
'Symfony\\Component\\Form\\Tests\\CallbackTransformerTest',
'Symfony\\Component\\Form\\Tests\\ChoiceList\\AbstractChoiceListTest',
'Symfony\\Component\\Form\\Tests\\ChoiceList\\ArrayChoiceListTest',
'Symfony\\Component\\Form\\Tests\\ChoiceList\\ArrayKeyChoiceListTest',
'Symfony\\Component\\Form\\Tests\\ChoiceList\\Factory\\CachingFactoryDecoratorTest',
'Symfony\\Component\\Form\\Tests\\ChoiceList\\Factory\\DefaultChoiceListFactoryTest',
'Symfony\\Component\\Form\\Tests\\ChoiceList\\Factory\\DefaultChoiceListFactoryTest_Castable',
'Symfony\\Component\\Form\\Tests\\ChoiceList\\Factory\\PropertyAccessDecoratorTest',
'Symfony\\Component\\Form\\Tests\\ChoiceList\\LazyChoiceListTest',
'Symfony\\Component\\Form\\Tests\\ChoiceList\\LegacyChoiceListAdapterTest',
'Symfony\\Component\\Form\\Tests\\CompoundFormPerformanceTest',
'Symfony\\Component\\Form\\Tests\\CompoundFormTest',
'Symfony\\Component\\Form\\Tests\\ConcreteExtension',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\ChoiceList\\AbstractChoiceListTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\ChoiceList\\ChoiceListTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\ChoiceList\\Fixtures\\LazyChoiceListImpl',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\ChoiceList\\Fixtures\\LazyChoiceListInvalidImpl',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\ChoiceList\\LazyChoiceListTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\ChoiceList\\ObjectChoiceListTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\ChoiceList\\ObjectChoiceListTest_EntityWithToString',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\ChoiceList\\SimpleChoiceListTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\ChoiceList\\SimpleNumericChoiceListTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataMapper\\PropertyPathMapperTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\ArrayToPartsTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\BaseDateTimeTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\BooleanToStringTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\ChoiceToValueTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\ChoicesToValuesTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\DataTransformerChainTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\DateTimeTestCase',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\DateTimeToArrayTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\DateTimeToLocalizedStringTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\DateTimeToRfc3339TransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\DateTimeToStringTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\DateTimeToTimestampTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\IntegerToLocalizedStringTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\MoneyToLocalizedStringTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\NumberToLocalizedStringTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\PercentToLocalizedStringTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\DataTransformer\\ValueToDuplicatesTransformerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\EventListener\\FixRadioInputListenerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\EventListener\\FixUrlProtocolListenerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\EventListener\\MergeCollectionListenerArrayObjectTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\EventListener\\MergeCollectionListenerArrayTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\EventListener\\MergeCollectionListenerCustomArrayObjectTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\EventListener\\MergeCollectionListenerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\EventListener\\ResizeFormListenerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\EventListener\\TrimListenerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\BaseTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\BirthdayTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\ButtonTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\CheckboxTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\ChoiceTypePerformanceTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\ChoiceTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\CollectionTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\CountryTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\CurrencyTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\DateTimeTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\DateTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\FileTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\FormTest_AuthorWithoutRefSetter',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\FormTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\IntegerTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\LanguageTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\LocaleTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\MoneyTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\NumberTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\PasswordTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\RepeatedTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\SubmitTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\TimeTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\TimezoneTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\TypeTestCase',
'Symfony\\Component\\Form\\Tests\\Extension\\Core\\Type\\UrlTypeTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Csrf\\CsrfProvider\\LegacyDefaultCsrfProviderTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Csrf\\CsrfProvider\\LegacySessionCsrfProviderTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Csrf\\EventListener\\CsrfValidationListenerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Csrf\\Type\\FormTypeCsrfExtensionTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Csrf\\Type\\FormTypeCsrfExtensionTest_ChildType',
'Symfony\\Component\\Form\\Tests\\Extension\\DataCollector\\DataCollectorExtensionTest',
'Symfony\\Component\\Form\\Tests\\Extension\\DataCollector\\FormDataCollectorTest',
'Symfony\\Component\\Form\\Tests\\Extension\\DataCollector\\FormDataExtractorTest',
'Symfony\\Component\\Form\\Tests\\Extension\\DataCollector\\FormDataExtractorTest_SimpleValueExporter',
'Symfony\\Component\\Form\\Tests\\Extension\\DataCollector\\Type\\DataCollectorTypeExtensionTest',
'Symfony\\Component\\Form\\Tests\\Extension\\HttpFoundation\\EventListener\\LegacyBindRequestListenerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\HttpFoundation\\HttpFoundationRequestHandlerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\Constraints\\FormValidatorPerformanceTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\Constraints\\FormValidatorTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\Constraints\\LegacyFormValidatorLegacyApiTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\EventListener\\ValidationListenerTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\Type\\BaseValidatorExtensionTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\Type\\FormTypeValidatorExtensionTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\Type\\SubmitTypeValidatorExtensionTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\Type\\TypeTestCase',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\Util\\ServerParamsTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\ValidatorExtensionTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\ValidatorTypeGuesserTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\ValidatorTypeGuesserTest_TestClass',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\ViolationMapper\\ViolationMapperTest',
'Symfony\\Component\\Form\\Tests\\Extension\\Validator\\ViolationMapper\\ViolationPathTest',
'Symfony\\Component\\Form\\Tests\\Fixtures\\AbstractAuthor',
'Symfony\\Component\\Form\\Tests\\Fixtures\\AlternatingRowType',
'Symfony\\Component\\Form\\Tests\\Fixtures\\Author',
'Symfony\\Component\\Form\\Tests\\Fixtures\\AuthorInterface',
'Symfony\\Component\\Form\\Tests\\Fixtures\\AuthorType',
'Symfony\\Component\\Form\\Tests\\Fixtures\\CustomArrayObject',
'Symfony\\Component\\Form\\Tests\\Fixtures\\CustomOptionsResolver',
'Symfony\\Component\\Form\\Tests\\Fixtures\\FixedDataTransformer',
'Symfony\\Component\\Form\\Tests\\Fixtures\\FixedFilterListener',
'Symfony\\Component\\Form\\Tests\\Fixtures\\FooSubType',
'Symfony\\Component\\Form\\Tests\\Fixtures\\FooSubTypeWithParentInstance',
'Symfony\\Component\\Form\\Tests\\Fixtures\\FooType',
'Symfony\\Component\\Form\\Tests\\Fixtures\\FooTypeBarExtension',
'Symfony\\Component\\Form\\Tests\\Fixtures\\FooTypeBazExtension',
'Symfony\\Component\\Form\\Tests\\Fixtures\\TestExtension',
'Symfony\\Component\\Form\\Tests\\FormBuilderTest',
'Symfony\\Component\\Form\\Tests\\FormConfigTest',
'Symfony\\Component\\Form\\Tests\\FormFactoryBuilderTest',
'Symfony\\Component\\Form\\Tests\\FormFactoryTest',
'Symfony\\Component\\Form\\Tests\\FormIntegrationTestCase',
'Symfony\\Component\\Form\\Tests\\FormPerformanceTestCase',
'Symfony\\Component\\Form\\Tests\\FormRegistryTest',
'Symfony\\Component\\Form\\Tests\\FormRendererTest',
'Symfony\\Component\\Form\\Tests\\Guess\\GuessTest',
'Symfony\\Component\\Form\\Tests\\Guess\\TestGuess',
'Symfony\\Component\\Form\\Tests\\NativeRequestHandlerTest',
'Symfony\\Component\\Form\\Tests\\ResolvedFormTypeTest',
'Symfony\\Component\\Form\\Tests\\SimpleFormTest',
'Symfony\\Component\\Form\\Tests\\SimpleFormTest_Countable',
'Symfony\\Component\\Form\\Tests\\SimpleFormTest_Traversable',
'Symfony\\Component\\Form\\Tests\\Util\\OrderedHashMapTest',
'Symfony\\Component\\Form\\Util\\FormUtil',
'Symfony\\Component\\Form\\Util\\InheritDataAwareIterator',
'Symfony\\Component\\Form\\Util\\OrderedHashMap',
'Symfony\\Component\\Form\\Util\\OrderedHashMapIterator',
'Symfony\\Component\\Form\\Util\\ServerParams',
'Symfony\\Component\\Form\\Util\\VirtualFormAwareIterator',
'Symfony\\Component\\HttpFoundation\\AcceptHeader',
'Symfony\\Component\\HttpFoundation\\AcceptHeaderItem',
'Symfony\\Component\\HttpFoundation\\ApacheRequest',
'Symfony\\Component\\HttpFoundation\\BinaryFileResponse',
'Symfony\\Component\\HttpFoundation\\Cookie',
'Symfony\\Component\\HttpFoundation\\ExpressionRequestMatcher',
'Symfony\\Component\\HttpFoundation\\FileBag',
'Symfony\\Component\\HttpFoundation\\File\\Exception\\AccessDeniedException',
'Symfony\\Component\\HttpFoundation\\File\\Exception\\FileException',
'Symfony\\Component\\HttpFoundation\\File\\Exception\\FileNotFoundException',
'Symfony\\Component\\HttpFoundation\\File\\Exception\\UnexpectedTypeException',
'Symfony\\Component\\HttpFoundation\\File\\Exception\\UploadException',
'Symfony\\Component\\HttpFoundation\\File\\File',
'Symfony\\Component\\HttpFoundation\\File\\MimeType\\ExtensionGuesser',
'Symfony\\Component\\HttpFoundation\\File\\MimeType\\ExtensionGuesserInterface',
'Symfony\\Component\\HttpFoundation\\File\\MimeType\\FileBinaryMimeTypeGuesser',
'Symfony\\Component\\HttpFoundation\\File\\MimeType\\FileinfoMimeTypeGuesser',
'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeExtensionGuesser',
'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeGuesser',
'Symfony\\Component\\HttpFoundation\\File\\MimeType\\MimeTypeGuesserInterface',
'Symfony\\Component\\HttpFoundation\\File\\UploadedFile',
'Symfony\\Component\\HttpFoundation\\HeaderBag',
'Symfony\\Component\\HttpFoundation\\IpUtils',
'Symfony\\Component\\HttpFoundation\\JsonResponse',
'Symfony\\Component\\HttpFoundation\\ParameterBag',
'Symfony\\Component\\HttpFoundation\\RedirectResponse',
'Symfony\\Component\\HttpFoundation\\Request',
'Symfony\\Component\\HttpFoundation\\RequestMatcher',
'Symfony\\Component\\HttpFoundation\\RequestMatcherInterface',
'Symfony\\Component\\HttpFoundation\\RequestStack',
'Symfony\\Component\\HttpFoundation\\Response',
'Symfony\\Component\\HttpFoundation\\ResponseHeaderBag',
'Symfony\\Component\\HttpFoundation\\ServerBag',
'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBag',
'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\AttributeBagInterface',
'Symfony\\Component\\HttpFoundation\\Session\\Attribute\\NamespacedAttributeBag',
'Symfony\\Component\\HttpFoundation\\Session\\Flash\\AutoExpireFlashBag',
'Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBag',
'Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBagInterface',
'Symfony\\Component\\HttpFoundation\\Session\\Session',
'Symfony\\Component\\HttpFoundation\\Session\\SessionBagInterface',
'Symfony\\Component\\HttpFoundation\\Session\\SessionInterface',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\LegacyPdoSessionHandler',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MemcacheSessionHandler',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MemcachedSessionHandler',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\MongoDbSessionHandler',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeFileSessionHandler',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeSessionHandler',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NullSessionHandler',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\PdoSessionHandler',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\WriteCheckSessionHandler',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MetadataBag',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockArraySessionStorage',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\PhpBridgeSessionStorage',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\AbstractProxy',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\NativeProxy',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\SessionHandlerProxy',
'Symfony\\Component\\HttpFoundation\\Session\\Storage\\SessionStorageInterface',
'Symfony\\Component\\HttpFoundation\\StreamedResponse',
'Symfony\\Component\\HttpFoundation\\Tests\\AcceptHeaderItemTest',
'Symfony\\Component\\HttpFoundation\\Tests\\AcceptHeaderTest',
'Symfony\\Component\\HttpFoundation\\Tests\\ApacheRequestTest',
'Symfony\\Component\\HttpFoundation\\Tests\\BinaryFileResponseTest',
'Symfony\\Component\\HttpFoundation\\Tests\\CookieTest',
'Symfony\\Component\\HttpFoundation\\Tests\\ExpressionRequestMatcherTest',
'Symfony\\Component\\HttpFoundation\\Tests\\FileBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\File\\FakeFile',
'Symfony\\Component\\HttpFoundation\\Tests\\File\\FileTest',
'Symfony\\Component\\HttpFoundation\\Tests\\File\\MimeType\\MimeTypeTest',
'Symfony\\Component\\HttpFoundation\\Tests\\File\\UploadedFileTest',
'Symfony\\Component\\HttpFoundation\\Tests\\HeaderBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\IpUtilsTest',
'Symfony\\Component\\HttpFoundation\\Tests\\JsonResponseTest',
'Symfony\\Component\\HttpFoundation\\Tests\\JsonSerializableObject',
'Symfony\\Component\\HttpFoundation\\Tests\\NewRequest',
'Symfony\\Component\\HttpFoundation\\Tests\\ParameterBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\RedirectResponseTest',
'Symfony\\Component\\HttpFoundation\\Tests\\RequestContentProxy',
'Symfony\\Component\\HttpFoundation\\Tests\\RequestMatcherTest',
'Symfony\\Component\\HttpFoundation\\Tests\\RequestStackTest',
'Symfony\\Component\\HttpFoundation\\Tests\\RequestTest',
'Symfony\\Component\\HttpFoundation\\Tests\\ResponseHeaderBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\ResponseTest',
'Symfony\\Component\\HttpFoundation\\Tests\\ResponseTestCase',
'Symfony\\Component\\HttpFoundation\\Tests\\ServerBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Attribute\\AttributeBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Attribute\\NamespacedAttributeBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Flash\\AutoExpireFlashBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Flash\\FlashBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\SessionTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\LegacyPdoSessionHandlerTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\MemcacheSessionHandlerTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\MemcachedSessionHandlerTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\MockPdo',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\MongoDbSessionHandlerTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\NativeFileSessionHandlerTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\NativeSessionHandlerTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\NullSessionHandlerTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\PdoSessionHandlerTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Handler\\WriteCheckSessionHandlerTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\MetadataBagTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\MockArraySessionStorageTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\MockFileSessionStorageTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\NativeSessionStorageTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\PhpBridgeSessionStorageTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Proxy\\AbstractProxyTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Proxy\\ConcreteProxy',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Proxy\\ConcreteSessionHandlerInterfaceProxy',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Proxy\\NativeProxyTest',
'Symfony\\Component\\HttpFoundation\\Tests\\Session\\Storage\\Proxy\\SessionHandlerProxyTest',
'Symfony\\Component\\HttpFoundation\\Tests\\StreamedResponseTest',
'Symfony\\Component\\HttpFoundation\\Tests\\StringableObject',
'Symfony\\Component\\HttpKernel\\Bundle\\Bundle',
'Symfony\\Component\\HttpKernel\\Bundle\\BundleInterface',
'Symfony\\Component\\HttpKernel\\CacheClearer\\CacheClearerInterface',
'Symfony\\Component\\HttpKernel\\CacheClearer\\ChainCacheClearer',
'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmer',
'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmerAggregate',
'Symfony\\Component\\HttpKernel\\CacheWarmer\\CacheWarmerInterface',
'Symfony\\Component\\HttpKernel\\CacheWarmer\\WarmableInterface',
'Symfony\\Component\\HttpKernel\\Client',
'Symfony\\Component\\HttpKernel\\Config\\EnvParametersResource',
'Symfony\\Component\\HttpKernel\\Config\\FileLocator',
'Symfony\\Component\\HttpKernel\\Controller\\ControllerReference',
'Symfony\\Component\\HttpKernel\\Controller\\ControllerResolver',
'Symfony\\Component\\HttpKernel\\Controller\\ControllerResolverInterface',
'Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver',
'Symfony\\Component\\HttpKernel\\DataCollector\\ConfigDataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\DataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\DataCollectorInterface',
'Symfony\\Component\\HttpKernel\\DataCollector\\DumpDataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\EventDataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\ExceptionDataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\LateDataCollectorInterface',
'Symfony\\Component\\HttpKernel\\DataCollector\\LoggerDataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\MemoryDataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\RouterDataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\TimeDataCollector',
'Symfony\\Component\\HttpKernel\\DataCollector\\Util\\ValueExporter',
'Symfony\\Component\\HttpKernel\\Debug\\ErrorHandler',
'Symfony\\Component\\HttpKernel\\Debug\\ExceptionHandler',
'Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher',
'Symfony\\Component\\HttpKernel\\DependencyInjection\\AddClassesToCachePass',
'Symfony\\Component\\HttpKernel\\DependencyInjection\\ConfigurableExtension',
'Symfony\\Component\\HttpKernel\\DependencyInjection\\ContainerAwareHttpKernel',
'Symfony\\Component\\HttpKernel\\DependencyInjection\\Extension',
'Symfony\\Component\\HttpKernel\\DependencyInjection\\FragmentRendererPass',
'Symfony\\Component\\HttpKernel\\DependencyInjection\\LazyLoadingFragmentHandler',
'Symfony\\Component\\HttpKernel\\DependencyInjection\\MergeExtensionConfigurationPass',
'Symfony\\Component\\HttpKernel\\DependencyInjection\\RegisterListenersPass',
'Symfony\\Component\\HttpKernel\\EventListener\\AddRequestFormatsListener',
'Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener',
'Symfony\\Component\\HttpKernel\\EventListener\\DumpListener',
'Symfony\\Component\\HttpKernel\\EventListener\\ErrorsLoggerListener',
'Symfony\\Component\\HttpKernel\\EventListener\\EsiListener',
'Symfony\\Component\\HttpKernel\\EventListener\\ExceptionListener',
'Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener',
'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener',
'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener',
'Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener',
'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener',
'Symfony\\Component\\HttpKernel\\EventListener\\SaveSessionListener',
'Symfony\\Component\\HttpKernel\\EventListener\\SessionListener',
'Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener',
'Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener',
'Symfony\\Component\\HttpKernel\\EventListener\\TestSessionListener',
'Symfony\\Component\\HttpKernel\\EventListener\\TranslatorListener',
'Symfony\\Component\\HttpKernel\\Event\\FilterControllerEvent',
'Symfony\\Component\\HttpKernel\\Event\\FilterResponseEvent',
'Symfony\\Component\\HttpKernel\\Event\\FinishRequestEvent',
'Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent',
'Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent',
'Symfony\\Component\\HttpKernel\\Event\\GetResponseForExceptionEvent',
'Symfony\\Component\\HttpKernel\\Event\\KernelEvent',
'Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent',
'Symfony\\Component\\HttpKernel\\Exception\\AccessDeniedHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\BadRequestHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\ConflictHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\FatalErrorException',
'Symfony\\Component\\HttpKernel\\Exception\\FlattenException',
'Symfony\\Component\\HttpKernel\\Exception\\GoneHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\HttpException',
'Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface',
'Symfony\\Component\\HttpKernel\\Exception\\LengthRequiredHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\NotAcceptableHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\PreconditionFailedHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\PreconditionRequiredHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\ServiceUnavailableHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\TooManyRequestsHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\UnauthorizedHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\UnprocessableEntityHttpException',
'Symfony\\Component\\HttpKernel\\Exception\\UnsupportedMediaTypeHttpException',
'Symfony\\Component\\HttpKernel\\Fragment\\AbstractSurrogateFragmentRenderer',
'Symfony\\Component\\HttpKernel\\Fragment\\EsiFragmentRenderer',
'Symfony\\Component\\HttpKernel\\Fragment\\FragmentHandler',
'Symfony\\Component\\HttpKernel\\Fragment\\FragmentRendererInterface',
'Symfony\\Component\\HttpKernel\\Fragment\\HIncludeFragmentRenderer',
'Symfony\\Component\\HttpKernel\\Fragment\\InlineFragmentRenderer',
'Symfony\\Component\\HttpKernel\\Fragment\\RoutableFragmentRenderer',
'Symfony\\Component\\HttpKernel\\Fragment\\SsiFragmentRenderer',
'Symfony\\Component\\HttpKernel\\HttpCache\\Esi',
'Symfony\\Component\\HttpKernel\\HttpCache\\EsiResponseCacheStrategy',
'Symfony\\Component\\HttpKernel\\HttpCache\\EsiResponseCacheStrategyInterface',
'Symfony\\Component\\HttpKernel\\HttpCache\\HttpCache',
'Symfony\\Component\\HttpKernel\\HttpCache\\ResponseCacheStrategy',
'Symfony\\Component\\HttpKernel\\HttpCache\\ResponseCacheStrategyInterface',
'Symfony\\Component\\HttpKernel\\HttpCache\\Ssi',
'Symfony\\Component\\HttpKernel\\HttpCache\\Store',
'Symfony\\Component\\HttpKernel\\HttpCache\\StoreInterface',
'Symfony\\Component\\HttpKernel\\HttpCache\\SurrogateInterface',
'Symfony\\Component\\HttpKernel\\HttpKernel',
'Symfony\\Component\\HttpKernel\\HttpKernelInterface',
'Symfony\\Component\\HttpKernel\\Kernel',
'Symfony\\Component\\HttpKernel\\KernelEvents',
'Symfony\\Component\\HttpKernel\\KernelInterface',
'Symfony\\Component\\HttpKernel\\Log\\DebugLoggerInterface',
'Symfony\\Component\\HttpKernel\\Log\\LoggerInterface',
'Symfony\\Component\\HttpKernel\\Log\\NullLogger',
'Symfony\\Component\\HttpKernel\\Profiler\\BaseMemcacheProfilerStorage',
'Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage',
'Symfony\\Component\\HttpKernel\\Profiler\\MemcacheProfilerStorage',
'Symfony\\Component\\HttpKernel\\Profiler\\MemcachedProfilerStorage',
'Symfony\\Component\\HttpKernel\\Profiler\\MongoDbProfilerStorage',
'Symfony\\Component\\HttpKernel\\Profiler\\MysqlProfilerStorage',
'Symfony\\Component\\HttpKernel\\Profiler\\PdoProfilerStorage',
'Symfony\\Component\\HttpKernel\\Profiler\\Profile',
'Symfony\\Component\\HttpKernel\\Profiler\\Profiler',
'Symfony\\Component\\HttpKernel\\Profiler\\ProfilerStorageInterface',
'Symfony\\Component\\HttpKernel\\Profiler\\RedisProfilerStorage',
'Symfony\\Component\\HttpKernel\\Profiler\\SqliteProfilerStorage',
'Symfony\\Component\\HttpKernel\\TerminableInterface',
'Symfony\\Component\\HttpKernel\\Tests\\Bundle\\BundleTest',
'Symfony\\Component\\HttpKernel\\Tests\\CacheClearer\\ChainCacheClearerTest',
'Symfony\\Component\\HttpKernel\\Tests\\CacheWarmer\\CacheWarmerAggregateTest',
'Symfony\\Component\\HttpKernel\\Tests\\CacheWarmer\\CacheWarmerTest',
'Symfony\\Component\\HttpKernel\\Tests\\CacheWarmer\\TestCacheWarmer',
'Symfony\\Component\\HttpKernel\\Tests\\ClientTest',
'Symfony\\Component\\HttpKernel\\Tests\\Config\\EnvParametersResourceTest',
'Symfony\\Component\\HttpKernel\\Tests\\Config\\FileLocatorTest',
'Symfony\\Component\\HttpKernel\\Tests\\Controller',
'Symfony\\Component\\HttpKernel\\Tests\\Controller\\ControllerResolverTest',
'Symfony\\Component\\HttpKernel\\Tests\\DataCollector\\ConfigDataCollectorTest',
'Symfony\\Component\\HttpKernel\\Tests\\DataCollector\\DumpDataCollectorTest',
'Symfony\\Component\\HttpKernel\\Tests\\DataCollector\\ExceptionDataCollectorTest',
'Symfony\\Component\\HttpKernel\\Tests\\DataCollector\\KernelForTest',
'Symfony\\Component\\HttpKernel\\Tests\\DataCollector\\LoggerDataCollectorTest',
'Symfony\\Component\\HttpKernel\\Tests\\DataCollector\\MemoryDataCollectorTest',
'Symfony\\Component\\HttpKernel\\Tests\\DataCollector\\RequestDataCollectorTest',
'Symfony\\Component\\HttpKernel\\Tests\\DataCollector\\TimeDataCollectorTest',
'Symfony\\Component\\HttpKernel\\Tests\\DataCollector\\Util\\ValueExporterTest',
'Symfony\\Component\\HttpKernel\\Tests\\Debug\\TraceableEventDispatcherTest',
'Symfony\\Component\\HttpKernel\\Tests\\DependencyInjection\\ContainerAwareHttpKernelTest',
'Symfony\\Component\\HttpKernel\\Tests\\DependencyInjection\\FragmentRendererPassTest',
'Symfony\\Component\\HttpKernel\\Tests\\DependencyInjection\\LazyLoadingFragmentHandlerTest',
'Symfony\\Component\\HttpKernel\\Tests\\DependencyInjection\\MergeExtensionConfigurationPassTest',
'Symfony\\Component\\HttpKernel\\Tests\\DependencyInjection\\RendererService',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\AddRequestFormatsListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\DebugHandlersListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\DumpListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\ExceptionListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\FragmentListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\LocaleListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\MockCloner',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\MockDumper',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\ProfilerListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\ResponseListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\RouterListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\SurrogateListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\TestKernel',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\TestKernelThatThrowsException',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\TestLogger',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\TestSessionListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\EventListener\\TranslatorListenerTest',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\ExtensionAbsentBundle\\ExtensionAbsentBundle',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\ExtensionLoadedBundle\\DependencyInjection\\ExtensionLoadedExtension',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\ExtensionLoadedBundle\\ExtensionLoadedBundle',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\ExtensionNotValidBundle\\DependencyInjection\\ExtensionNotValidExtension',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\ExtensionNotValidBundle\\ExtensionNotValidBundle',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\ExtensionPresentBundle\\Command\\BarCommand',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\ExtensionPresentBundle\\Command\\FooCommand',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\ExtensionPresentBundle\\DependencyInjection\\ExtensionPresentExtension',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\ExtensionPresentBundle\\ExtensionPresentBundle',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\FooBarBundle',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\KernelForOverrideName',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\KernelForTest',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\TestClient',
'Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\TestEventDispatcher',
'Symfony\\Component\\HttpKernel\\Tests\\Fragment\\Bar',
'Symfony\\Component\\HttpKernel\\Tests\\Fragment\\EsiFragmentRendererTest',
'Symfony\\Component\\HttpKernel\\Tests\\Fragment\\Foo',
'Symfony\\Component\\HttpKernel\\Tests\\Fragment\\FragmentHandlerTest',
'Symfony\\Component\\HttpKernel\\Tests\\Fragment\\HIncludeFragmentRendererTest',
'Symfony\\Component\\HttpKernel\\Tests\\Fragment\\InlineFragmentRendererTest',
'Symfony\\Component\\HttpKernel\\Tests\\Fragment\\RoutableFragmentRendererTest',
'Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\EsiTest',
'Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\HttpCacheTest',
'Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\HttpCacheTestCase',
'Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\SsiTest',
'Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\StoreTest',
'Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\TestHttpKernel',
'Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\TestMultipleHttpKernel',
'Symfony\\Component\\HttpKernel\\Tests\\HttpKernelTest',
'Symfony\\Component\\HttpKernel\\Tests\\KernelTest',
'Symfony\\Component\\HttpKernel\\Tests\\Logger',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\AbstractProfilerStorageTest',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\DummyMongoDbProfilerStorage',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\FileProfilerStorageTest',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\MemcacheProfilerStorageTest',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\MemcachedProfilerStorageTest',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\Mock\\MemcacheMock',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\Mock\\MemcachedMock',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\Mock\\RedisMock',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\MongoDbProfilerStorageTest',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\MongoDbProfilerStorageTestDataCollector',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\ProfilerTest',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\RedisProfilerStorageTest',
'Symfony\\Component\\HttpKernel\\Tests\\Profiler\\SqliteProfilerStorageTest',
'Symfony\\Component\\HttpKernel\\Tests\\TestHttpKernel',
'Symfony\\Component\\HttpKernel\\Tests\\UriSignerTest',
'Symfony\\Component\\HttpKernel\\UriSigner',
'Symfony\\Component\\Intl\\Collator\\Collator',
'Symfony\\Component\\Intl\\Data\\Bundle\\Compiler\\BundleCompilerInterface',
'Symfony\\Component\\Intl\\Data\\Bundle\\Compiler\\GenrbCompiler',
'Symfony\\Component\\Intl\\Data\\Bundle\\Reader\\BufferedBundleReader',
'Symfony\\Component\\Intl\\Data\\Bundle\\Reader\\BundleEntryReader',
'Symfony\\Component\\Intl\\Data\\Bundle\\Reader\\BundleEntryReaderInterface',
'Symfony\\Component\\Intl\\Data\\Bundle\\Reader\\BundleReaderInterface',
'Symfony\\Component\\Intl\\Data\\Bundle\\Reader\\IntlBundleReader',
'Symfony\\Component\\Intl\\Data\\Bundle\\Reader\\JsonBundleReader',
'Symfony\\Component\\Intl\\Data\\Bundle\\Reader\\PhpBundleReader',
'Symfony\\Component\\Intl\\Data\\Bundle\\Writer\\BundleWriterInterface',
'Symfony\\Component\\Intl\\Data\\Bundle\\Writer\\JsonBundleWriter',
'Symfony\\Component\\Intl\\Data\\Bundle\\Writer\\PhpBundleWriter',
'Symfony\\Component\\Intl\\Data\\Bundle\\Writer\\TextBundleWriter',
'Symfony\\Component\\Intl\\Data\\Generator\\AbstractDataGenerator',
'Symfony\\Component\\Intl\\Data\\Generator\\CurrencyDataGenerator',
'Symfony\\Component\\Intl\\Data\\Generator\\GeneratorConfig',
'Symfony\\Component\\Intl\\Data\\Generator\\LanguageDataGenerator',
'Symfony\\Component\\Intl\\Data\\Generator\\LocaleDataGenerator',
'Symfony\\Component\\Intl\\Data\\Generator\\RegionDataGenerator',
'Symfony\\Component\\Intl\\Data\\Generator\\ScriptDataGenerator',
'Symfony\\Component\\Intl\\Data\\Provider\\CurrencyDataProvider',
'Symfony\\Component\\Intl\\Data\\Provider\\LanguageDataProvider',
'Symfony\\Component\\Intl\\Data\\Provider\\LocaleDataProvider',
'Symfony\\Component\\Intl\\Data\\Provider\\RegionDataProvider',
'Symfony\\Component\\Intl\\Data\\Provider\\ScriptDataProvider',
'Symfony\\Component\\Intl\\Data\\Util\\ArrayAccessibleResourceBundle',
'Symfony\\Component\\Intl\\Data\\Util\\LocaleScanner',
'Symfony\\Component\\Intl\\Data\\Util\\RecursiveArrayAccess',
'Symfony\\Component\\Intl\\Data\\Util\\RingBuffer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\AmPmTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\DayOfWeekTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\DayOfYearTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\DayTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\FullTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\Hour1200Transformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\Hour1201Transformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\Hour2400Transformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\Hour2401Transformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\HourTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\MinuteTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\MonthTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\QuarterTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\SecondTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\TimeZoneTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\Transformer',
'Symfony\\Component\\Intl\\DateFormatter\\DateFormat\\YearTransformer',
'Symfony\\Component\\Intl\\DateFormatter\\IntlDateFormatter',
'Symfony\\Component\\Intl\\Exception\\BadMethodCallException',
'Symfony\\Component\\Intl\\Exception\\ExceptionInterface',
'Symfony\\Component\\Intl\\Exception\\InvalidArgumentException',
'Symfony\\Component\\Intl\\Exception\\MethodArgumentNotImplementedException',
'Symfony\\Component\\Intl\\Exception\\MethodArgumentValueNotImplementedException',
'Symfony\\Component\\Intl\\Exception\\MethodNotImplementedException',
'Symfony\\Component\\Intl\\Exception\\MissingResourceException',
'Symfony\\Component\\Intl\\Exception\\NotImplementedException',
'Symfony\\Component\\Intl\\Exception\\OutOfBoundsException',
'Symfony\\Component\\Intl\\Exception\\ResourceBundleNotFoundException',
'Symfony\\Component\\Intl\\Exception\\RuntimeException',
'Symfony\\Component\\Intl\\Exception\\UnexpectedTypeException',
'Symfony\\Component\\Intl\\Globals\\IntlGlobals',
'Symfony\\Component\\Intl\\Intl',
'Symfony\\Component\\Intl\\Locale',
'Symfony\\Component\\Intl\\Locale\\Locale',
'Symfony\\Component\\Intl\\NumberFormatter\\NumberFormatter',
'Symfony\\Component\\Intl\\ResourceBundle\\CurrencyBundle',
'Symfony\\Component\\Intl\\ResourceBundle\\CurrencyBundleInterface',
'Symfony\\Component\\Intl\\ResourceBundle\\LanguageBundle',
'Symfony\\Component\\Intl\\ResourceBundle\\LanguageBundleInterface',
'Symfony\\Component\\Intl\\ResourceBundle\\LocaleBundle',
'Symfony\\Component\\Intl\\ResourceBundle\\LocaleBundleInterface',
'Symfony\\Component\\Intl\\ResourceBundle\\RegionBundle',
'Symfony\\Component\\Intl\\ResourceBundle\\RegionBundleInterface',
'Symfony\\Component\\Intl\\ResourceBundle\\ResourceBundleInterface',
'Symfony\\Component\\Intl\\Tests\\Collator\\AbstractCollatorTest',
'Symfony\\Component\\Intl\\Tests\\Collator\\CollatorTest',
'Symfony\\Component\\Intl\\Tests\\Collator\\Verification\\CollatorTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Bundle\\Reader\\BundleEntryReaderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Bundle\\Reader\\IntlBundleReaderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Bundle\\Reader\\JsonBundleReaderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Bundle\\Reader\\PhpBundleReaderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Bundle\\Writer\\JsonBundleWriterTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Bundle\\Writer\\PhpBundleWriterTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Bundle\\Writer\\TextBundleWriterTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\AbstractCurrencyDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\AbstractDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\AbstractLanguageDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\AbstractLocaleDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\AbstractRegionDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\AbstractScriptDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\Json\\JsonCurrencyDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\Json\\JsonLanguageDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\Json\\JsonLocaleDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\Json\\JsonRegionDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Provider\\Json\\JsonScriptDataProviderTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Util\\LocaleScannerTest',
'Symfony\\Component\\Intl\\Tests\\Data\\Util\\RingBufferTest',
'Symfony\\Component\\Intl\\Tests\\DateFormatter\\AbstractIntlDateFormatterTest',
'Symfony\\Component\\Intl\\Tests\\DateFormatter\\IntlDateFormatterTest',
'Symfony\\Component\\Intl\\Tests\\DateFormatter\\Verification\\IntlDateFormatterTest',
'Symfony\\Component\\Intl\\Tests\\Globals\\AbstractIntlGlobalsTest',
'Symfony\\Component\\Intl\\Tests\\Globals\\IntlGlobalsTest',
'Symfony\\Component\\Intl\\Tests\\Globals\\Verification\\IntlGlobalsTest',
'Symfony\\Component\\Intl\\Tests\\Locale\\AbstractLocaleTest',
'Symfony\\Component\\Intl\\Tests\\Locale\\LocaleTest',
'Symfony\\Component\\Intl\\Tests\\Locale\\Verification\\LocaleTest',
'Symfony\\Component\\Intl\\Tests\\NumberFormatter\\AbstractNumberFormatterTest',
'Symfony\\Component\\Intl\\Tests\\NumberFormatter\\NumberFormatterTest',
'Symfony\\Component\\Intl\\Tests\\NumberFormatter\\Verification\\NumberFormatterTest',
'Symfony\\Component\\Intl\\Tests\\Util\\IcuVersionTest',
'Symfony\\Component\\Intl\\Tests\\Util\\VersionTest',
'Symfony\\Component\\Intl\\Util\\IcuVersion',
'Symfony\\Component\\Intl\\Util\\IntlTestHelper',
'Symfony\\Component\\Intl\\Util\\SvnCommit',
'Symfony\\Component\\Intl\\Util\\SvnRepository',
'Symfony\\Component\\Intl\\Util\\Version',
'Symfony\\Component\\Locale\\Exception\\MethodArgumentNotImplementedException',
'Symfony\\Component\\Locale\\Exception\\MethodArgumentValueNotImplementedException',
'Symfony\\Component\\Locale\\Exception\\MethodNotImplementedException',
'Symfony\\Component\\Locale\\Exception\\NotImplementedException',
'Symfony\\Component\\Locale\\Locale',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\AmPmTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\DayOfWeekTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\DayOfYearTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\DayTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\FullTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\Hour1200Transformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\Hour1201Transformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\Hour2400Transformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\Hour2401Transformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\HourTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\MinuteTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\MonthTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\QuarterTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\SecondTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\TimeZoneTransformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\Transformer',
'Symfony\\Component\\Locale\\Stub\\DateFormat\\YearTransformer',
'Symfony\\Component\\Locale\\Stub\\StubCollator',
'Symfony\\Component\\Locale\\Stub\\StubIntl',
'Symfony\\Component\\Locale\\Stub\\StubIntlDateFormatter',
'Symfony\\Component\\Locale\\Stub\\StubLocale',
'Symfony\\Component\\Locale\\Stub\\StubNumberFormatter',
'Symfony\\Component\\Locale\\Tests\\LocaleTest',
'Symfony\\Component\\Locale\\Tests\\Stub\\StubLocaleTest',
'Symfony\\Component\\OptionsResolver\\Exception\\AccessException',
'Symfony\\Component\\OptionsResolver\\Exception\\ExceptionInterface',
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidArgumentException',
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidOptionsException',
'Symfony\\Component\\OptionsResolver\\Exception\\MissingOptionsException',
'Symfony\\Component\\OptionsResolver\\Exception\\NoSuchOptionException',
'Symfony\\Component\\OptionsResolver\\Exception\\OptionDefinitionException',
'Symfony\\Component\\OptionsResolver\\Exception\\UndefinedOptionsException',
'Symfony\\Component\\OptionsResolver\\Options',
'Symfony\\Component\\OptionsResolver\\OptionsResolver',
'Symfony\\Component\\OptionsResolver\\OptionsResolverInterface',
'Symfony\\Component\\OptionsResolver\\Tests\\LegacyOptionsResolverTest',
'Symfony\\Component\\OptionsResolver\\Tests\\LegacyOptionsTest',
'Symfony\\Component\\OptionsResolver\\Tests\\OptionsResolver2Dot6Test',
'Symfony\\Component\\Process\\Exception\\ExceptionInterface',
'Symfony\\Component\\Process\\Exception\\InvalidArgumentException',
'Symfony\\Component\\Process\\Exception\\LogicException',
'Symfony\\Component\\Process\\Exception\\ProcessFailedException',
'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException',
'Symfony\\Component\\Process\\Exception\\RuntimeException',
'Symfony\\Component\\Process\\ExecutableFinder',
'Symfony\\Component\\Process\\PhpExecutableFinder',
'Symfony\\Component\\Process\\PhpProcess',
'Symfony\\Component\\Process\\Pipes\\AbstractPipes',
'Symfony\\Component\\Process\\Pipes\\PipesInterface',
'Symfony\\Component\\Process\\Pipes\\UnixPipes',
'Symfony\\Component\\Process\\Pipes\\WindowsPipes',
'Symfony\\Component\\Process\\Process',
'Symfony\\Component\\Process\\ProcessBuilder',
'Symfony\\Component\\Process\\ProcessUtils',
'Symfony\\Component\\Process\\Tests\\AbstractProcessTest',
'Symfony\\Component\\Process\\Tests\\ExecutableFinderTest',
'Symfony\\Component\\Process\\Tests\\NonStringifiable',
'Symfony\\Component\\Process\\Tests\\PhpExecutableFinderTest',
'Symfony\\Component\\Process\\Tests\\PhpProcessTest',
'Symfony\\Component\\Process\\Tests\\ProcessBuilderTest',
'Symfony\\Component\\Process\\Tests\\ProcessFailedExceptionTest',
'Symfony\\Component\\Process\\Tests\\ProcessInSigchildEnvironment',
'Symfony\\Component\\Process\\Tests\\ProcessUtilsTest',
'Symfony\\Component\\Process\\Tests\\SigchildDisabledProcessTest',
'Symfony\\Component\\Process\\Tests\\SigchildEnabledProcessTest',
'Symfony\\Component\\Process\\Tests\\SimpleProcessTest',
'Symfony\\Component\\Process\\Tests\\Stringifiable',
'Symfony\\Component\\PropertyAccess\\Exception\\AccessException',
'Symfony\\Component\\PropertyAccess\\Exception\\ExceptionInterface',
'Symfony\\Component\\PropertyAccess\\Exception\\InvalidArgumentException',
'Symfony\\Component\\PropertyAccess\\Exception\\InvalidPropertyPathException',
'Symfony\\Component\\PropertyAccess\\Exception\\NoSuchIndexException',
'Symfony\\Component\\PropertyAccess\\Exception\\NoSuchPropertyException',
'Symfony\\Component\\PropertyAccess\\Exception\\OutOfBoundsException',
'Symfony\\Component\\PropertyAccess\\Exception\\RuntimeException',
'Symfony\\Component\\PropertyAccess\\Exception\\UnexpectedTypeException',
'Symfony\\Component\\PropertyAccess\\PropertyAccess',
'Symfony\\Component\\PropertyAccess\\PropertyAccessor',
'Symfony\\Component\\PropertyAccess\\PropertyAccessorBuilder',
'Symfony\\Component\\PropertyAccess\\PropertyAccessorInterface',
'Symfony\\Component\\PropertyAccess\\PropertyPath',
'Symfony\\Component\\PropertyAccess\\PropertyPathBuilder',
'Symfony\\Component\\PropertyAccess\\PropertyPathInterface',
'Symfony\\Component\\PropertyAccess\\PropertyPathIterator',
'Symfony\\Component\\PropertyAccess\\PropertyPathIteratorInterface',
'Symfony\\Component\\PropertyAccess\\StringUtil',
'Symfony\\Component\\PropertyAccess\\Tests\\Fixtures\\NonTraversableArrayObject',
'Symfony\\Component\\PropertyAccess\\Tests\\Fixtures\\TestClass',
'Symfony\\Component\\PropertyAccess\\Tests\\Fixtures\\TestClassIsWritable',
'Symfony\\Component\\PropertyAccess\\Tests\\Fixtures\\TestClassMagicCall',
'Symfony\\Component\\PropertyAccess\\Tests\\Fixtures\\TestClassMagicGet',
'Symfony\\Component\\PropertyAccess\\Tests\\Fixtures\\TestClassSetValue',
'Symfony\\Component\\PropertyAccess\\Tests\\Fixtures\\Ticket5775Object',
'Symfony\\Component\\PropertyAccess\\Tests\\Fixtures\\TraversableArrayObject',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorArrayAccessTest',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorArrayObjectTest',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorArrayTest',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorBuilderTest',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorCollectionTest',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorCollectionTest_Car',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorCollectionTest_CarNoAdderAndRemover',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorCollectionTest_CarOnlyAdder',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorCollectionTest_CarOnlyRemover',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorCollectionTest_CarStructure',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorCollectionTest_CompositeCar',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorNonTraversableArrayObjectTest',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorTest',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyAccessorTraversableArrayObjectTest',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyPathBuilderTest',
'Symfony\\Component\\PropertyAccess\\Tests\\PropertyPathTest',
'Symfony\\Component\\PropertyAccess\\Tests\\StringUtilTest',
'Symfony\\Component\\Routing\\Annotation\\Route',
'Symfony\\Component\\Routing\\CompiledRoute',
'Symfony\\Component\\Routing\\Exception\\ExceptionInterface',
'Symfony\\Component\\Routing\\Exception\\InvalidParameterException',
'Symfony\\Component\\Routing\\Exception\\MethodNotAllowedException',
'Symfony\\Component\\Routing\\Exception\\MissingMandatoryParametersException',
'Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException',
'Symfony\\Component\\Routing\\Exception\\RouteNotFoundException',
'Symfony\\Component\\Routing\\Generator\\ConfigurableRequirementsInterface',
'Symfony\\Component\\Routing\\Generator\\Dumper\\GeneratorDumper',
'Symfony\\Component\\Routing\\Generator\\Dumper\\GeneratorDumperInterface',
'Symfony\\Component\\Routing\\Generator\\Dumper\\PhpGeneratorDumper',
'Symfony\\Component\\Routing\\Generator\\UrlGenerator',
'Symfony\\Component\\Routing\\Generator\\UrlGeneratorInterface',
'Symfony\\Component\\Routing\\Loader\\AnnotationClassLoader',
'Symfony\\Component\\Routing\\Loader\\AnnotationDirectoryLoader',
'Symfony\\Component\\Routing\\Loader\\AnnotationFileLoader',
'Symfony\\Component\\Routing\\Loader\\ClosureLoader',
'Symfony\\Component\\Routing\\Loader\\PhpFileLoader',
'Symfony\\Component\\Routing\\Loader\\XmlFileLoader',
'Symfony\\Component\\Routing\\Loader\\YamlFileLoader',
'Symfony\\Component\\Routing\\Matcher\\ApacheUrlMatcher',
'Symfony\\Component\\Routing\\Matcher\\Dumper\\ApacheMatcherDumper',
'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperCollection',
'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperPrefixCollection',
'Symfony\\Component\\Routing\\Matcher\\Dumper\\DumperRoute',
'Symfony\\Component\\Routing\\Matcher\\Dumper\\MatcherDumper',
'Symfony\\Component\\Routing\\Matcher\\Dumper\\MatcherDumperInterface',
'Symfony\\Component\\Routing\\Matcher\\Dumper\\PhpMatcherDumper',
'Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcher',
'Symfony\\Component\\Routing\\Matcher\\RedirectableUrlMatcherInterface',
'Symfony\\Component\\Routing\\Matcher\\RequestMatcherInterface',
'Symfony\\Component\\Routing\\Matcher\\TraceableUrlMatcher',
'Symfony\\Component\\Routing\\Matcher\\UrlMatcher',
'Symfony\\Component\\Routing\\Matcher\\UrlMatcherInterface',
'Symfony\\Component\\Routing\\RequestContext',
'Symfony\\Component\\Routing\\RequestContextAwareInterface',
'Symfony\\Component\\Routing\\Route',
'Symfony\\Component\\Routing\\RouteCollection',
'Symfony\\Component\\Routing\\RouteCompiler',
'Symfony\\Component\\Routing\\RouteCompilerInterface',
'Symfony\\Component\\Routing\\Router',
'Symfony\\Component\\Routing\\RouterInterface',
'Symfony\\Component\\Routing\\Tests\\Annotation\\RouteTest',
'Symfony\\Component\\Routing\\Tests\\CompiledRouteTest',
'Symfony\\Component\\Routing\\Tests\\Fixtures\\AnnotatedClasses\\AbstractClass',
'Symfony\\Component\\Routing\\Tests\\Fixtures\\AnnotatedClasses\\BarClass',
'Symfony\\Component\\Routing\\Tests\\Fixtures\\AnnotatedClasses\\FooClass',
'Symfony\\Component\\Routing\\Tests\\Fixtures\\CustomXmlFileLoader',
'Symfony\\Component\\Routing\\Tests\\Fixtures\\OtherAnnotatedClasses\\VariadicClass',
'Symfony\\Component\\Routing\\Tests\\Fixtures\\RedirectableUrlMatcher',
'Symfony\\Component\\Routing\\Tests\\Generator\\Dumper\\PhpGeneratorDumperTest',
'Symfony\\Component\\Routing\\Tests\\Generator\\UrlGeneratorTest',
'Symfony\\Component\\Routing\\Tests\\Loader\\AbstractAnnotationLoaderTest',
'Symfony\\Component\\Routing\\Tests\\Loader\\AnnotationClassLoaderTest',
'Symfony\\Component\\Routing\\Tests\\Loader\\AnnotationDirectoryLoaderTest',
'Symfony\\Component\\Routing\\Tests\\Loader\\AnnotationFileLoaderTest',
'Symfony\\Component\\Routing\\Tests\\Loader\\ClosureLoaderTest',
'Symfony\\Component\\Routing\\Tests\\Loader\\PhpFileLoaderTest',
'Symfony\\Component\\Routing\\Tests\\Loader\\XmlFileLoaderTest',
'Symfony\\Component\\Routing\\Tests\\Loader\\YamlFileLoaderTest',
'Symfony\\Component\\Routing\\Tests\\Matcher\\Dumper\\DumperCollectionTest',
'Symfony\\Component\\Routing\\Tests\\Matcher\\Dumper\\DumperPrefixCollectionTest',
'Symfony\\Component\\Routing\\Tests\\Matcher\\Dumper\\LegacyApacheMatcherDumperTest',
'Symfony\\Component\\Routing\\Tests\\Matcher\\Dumper\\PhpMatcherDumperTest',
'Symfony\\Component\\Routing\\Tests\\Matcher\\LegacyApacheUrlMatcherTest',
'Symfony\\Component\\Routing\\Tests\\Matcher\\RedirectableUrlMatcherTest',
'Symfony\\Component\\Routing\\Tests\\Matcher\\TraceableUrlMatcherTest',
'Symfony\\Component\\Routing\\Tests\\Matcher\\UrlMatcherTest',
'Symfony\\Component\\Routing\\Tests\\RequestContextTest',
'Symfony\\Component\\Routing\\Tests\\RouteCollectionTest',
'Symfony\\Component\\Routing\\Tests\\RouteCompilerTest',
'Symfony\\Component\\Routing\\Tests\\RouteTest',
'Symfony\\Component\\Routing\\Tests\\RouterTest',
'Symfony\\Component\\Security\\Acl\\Dbal\\AclProvider',
'Symfony\\Component\\Security\\Acl\\Dbal\\MutableAclProvider',
'Symfony\\Component\\Security\\Acl\\Dbal\\Schema',
'Symfony\\Component\\Security\\Acl\\Domain\\Acl',
'Symfony\\Component\\Security\\Acl\\Domain\\AclCollectionCache',
'Symfony\\Component\\Security\\Acl\\Domain\\AuditLogger',
'Symfony\\Component\\Security\\Acl\\Domain\\DoctrineAclCache',
'Symfony\\Component\\Security\\Acl\\Domain\\Entry',
'Symfony\\Component\\Security\\Acl\\Domain\\FieldEntry',
'Symfony\\Component\\Security\\Acl\\Domain\\ObjectIdentity',
'Symfony\\Component\\Security\\Acl\\Domain\\ObjectIdentityRetrievalStrategy',
'Symfony\\Component\\Security\\Acl\\Domain\\PermissionGrantingStrategy',
'Symfony\\Component\\Security\\Acl\\Domain\\RoleSecurityIdentity',
'Symfony\\Component\\Security\\Acl\\Domain\\SecurityIdentityRetrievalStrategy',
'Symfony\\Component\\Security\\Acl\\Domain\\UserSecurityIdentity',
'Symfony\\Component\\Security\\Acl\\Exception\\AclAlreadyExistsException',
'Symfony\\Component\\Security\\Acl\\Exception\\AclNotFoundException',
'Symfony\\Component\\Security\\Acl\\Exception\\ConcurrentModificationException',
'Symfony\\Component\\Security\\Acl\\Exception\\Exception',
'Symfony\\Component\\Security\\Acl\\Exception\\InvalidDomainObjectException',
'Symfony\\Component\\Security\\Acl\\Exception\\NoAceFoundException',
'Symfony\\Component\\Security\\Acl\\Exception\\NotAllAclsFoundException',
'Symfony\\Component\\Security\\Acl\\Exception\\SidNotLoadedException',
'Symfony\\Component\\Security\\Acl\\Model\\AclCacheInterface',
'Symfony\\Component\\Security\\Acl\\Model\\AclInterface',
'Symfony\\Component\\Security\\Acl\\Model\\AclProviderInterface',
'Symfony\\Component\\Security\\Acl\\Model\\AuditLoggerInterface',
'Symfony\\Component\\Security\\Acl\\Model\\AuditableAclInterface',
'Symfony\\Component\\Security\\Acl\\Model\\AuditableEntryInterface',
'Symfony\\Component\\Security\\Acl\\Model\\DomainObjectInterface',
'Symfony\\Component\\Security\\Acl\\Model\\EntryInterface',
'Symfony\\Component\\Security\\Acl\\Model\\FieldEntryInterface',
'Symfony\\Component\\Security\\Acl\\Model\\MutableAclInterface',
'Symfony\\Component\\Security\\Acl\\Model\\MutableAclProviderInterface',
'Symfony\\Component\\Security\\Acl\\Model\\ObjectIdentityInterface',
'Symfony\\Component\\Security\\Acl\\Model\\ObjectIdentityRetrievalStrategyInterface',
'Symfony\\Component\\Security\\Acl\\Model\\PermissionGrantingStrategyInterface',
'Symfony\\Component\\Security\\Acl\\Model\\SecurityIdentityInterface',
'Symfony\\Component\\Security\\Acl\\Model\\SecurityIdentityRetrievalStrategyInterface',
'Symfony\\Component\\Security\\Acl\\Permission\\AbstractMaskBuilder',
'Symfony\\Component\\Security\\Acl\\Permission\\BasicPermissionMap',
'Symfony\\Component\\Security\\Acl\\Permission\\MaskBuilder',
'Symfony\\Component\\Security\\Acl\\Permission\\MaskBuilderInterface',
'Symfony\\Component\\Security\\Acl\\Permission\\MaskBuilderRetrievalInterface',
'Symfony\\Component\\Security\\Acl\\Permission\\PermissionMapInterface',
'Symfony\\Component\\Security\\Acl\\Tests\\Dbal\\AclProviderBenchmarkTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Dbal\\AclProviderTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Dbal\\MutableAclProviderTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\AclTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\AuditLoggerTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\CustomUserImpl',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\DoctrineAclCacheTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\DomainObject',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\EntryTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\FieldEntryTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\ObjectIdentityRetrievalStrategyTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\ObjectIdentityTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\PermissionGrantingStrategyTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\RoleSecurityIdentityTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\SecurityIdentityRetrievalStrategyTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\TestDomainObject',
'Symfony\\Component\\Security\\Acl\\Tests\\Domain\\UserSecurityIdentityTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Permission\\BasicPermissionMapTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Permission\\MaskBuilderTest',
'Symfony\\Component\\Security\\Acl\\Tests\\Voter\\AclVoterTest',
'Symfony\\Component\\Security\\Acl\\Voter\\AclVoter',
'Symfony\\Component\\Security\\Acl\\Voter\\FieldVote',
'Symfony\\Component\\Security\\Core\\AuthenticationEvents',
'Symfony\\Component\\Security\\Core\\Authentication\\AuthenticationManagerInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\AuthenticationProviderManager',
'Symfony\\Component\\Security\\Core\\Authentication\\AuthenticationTrustResolver',
'Symfony\\Component\\Security\\Core\\Authentication\\AuthenticationTrustResolverInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\Provider\\AnonymousAuthenticationProvider',
'Symfony\\Component\\Security\\Core\\Authentication\\Provider\\AuthenticationProviderInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\Provider\\DaoAuthenticationProvider',
'Symfony\\Component\\Security\\Core\\Authentication\\Provider\\PreAuthenticatedAuthenticationProvider',
'Symfony\\Component\\Security\\Core\\Authentication\\Provider\\RememberMeAuthenticationProvider',
'Symfony\\Component\\Security\\Core\\Authentication\\Provider\\SimpleAuthenticationProvider',
'Symfony\\Component\\Security\\Core\\Authentication\\Provider\\UserAuthenticationProvider',
'Symfony\\Component\\Security\\Core\\Authentication\\RememberMe\\InMemoryTokenProvider',
'Symfony\\Component\\Security\\Core\\Authentication\\RememberMe\\PersistentToken',
'Symfony\\Component\\Security\\Core\\Authentication\\RememberMe\\PersistentTokenInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\RememberMe\\TokenProviderInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\SimpleAuthenticatorInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\SimpleFormAuthenticatorInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\SimplePreAuthenticatorInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\Token\\AbstractToken',
'Symfony\\Component\\Security\\Core\\Authentication\\Token\\AnonymousToken',
'Symfony\\Component\\Security\\Core\\Authentication\\Token\\PreAuthenticatedToken',
'Symfony\\Component\\Security\\Core\\Authentication\\Token\\RememberMeToken',
'Symfony\\Component\\Security\\Core\\Authentication\\Token\\Storage\\TokenStorage',
'Symfony\\Component\\Security\\Core\\Authentication\\Token\\Storage\\TokenStorageInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\Token\\TokenInterface',
'Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken',
'Symfony\\Component\\Security\\Core\\Authorization\\AccessDecisionManager',
'Symfony\\Component\\Security\\Core\\Authorization\\AccessDecisionManagerInterface',
'Symfony\\Component\\Security\\Core\\Authorization\\AuthorizationChecker',
'Symfony\\Component\\Security\\Core\\Authorization\\AuthorizationCheckerInterface',
'Symfony\\Component\\Security\\Core\\Authorization\\ExpressionLanguage',
'Symfony\\Component\\Security\\Core\\Authorization\\ExpressionLanguageProvider',
'Symfony\\Component\\Security\\Core\\Authorization\\Voter\\AbstractVoter',
'Symfony\\Component\\Security\\Core\\Authorization\\Voter\\AuthenticatedVoter',
'Symfony\\Component\\Security\\Core\\Authorization\\Voter\\ExpressionVoter',
'Symfony\\Component\\Security\\Core\\Authorization\\Voter\\RoleHierarchyVoter',
'Symfony\\Component\\Security\\Core\\Authorization\\Voter\\RoleVoter',
'Symfony\\Component\\Security\\Core\\Authorization\\Voter\\VoterInterface',
'Symfony\\Component\\Security\\Core\\Encoder\\BCryptPasswordEncoder',
'Symfony\\Component\\Security\\Core\\Encoder\\BasePasswordEncoder',
'Symfony\\Component\\Security\\Core\\Encoder\\EncoderAwareInterface',
'Symfony\\Component\\Security\\Core\\Encoder\\EncoderFactory',
'Symfony\\Component\\Security\\Core\\Encoder\\EncoderFactoryInterface',
'Symfony\\Component\\Security\\Core\\Encoder\\MessageDigestPasswordEncoder',
'Symfony\\Component\\Security\\Core\\Encoder\\PasswordEncoderInterface',
'Symfony\\Component\\Security\\Core\\Encoder\\Pbkdf2PasswordEncoder',
'Symfony\\Component\\Security\\Core\\Encoder\\PlaintextPasswordEncoder',
'Symfony\\Component\\Security\\Core\\Encoder\\UserPasswordEncoder',
'Symfony\\Component\\Security\\Core\\Encoder\\UserPasswordEncoderInterface',
'Symfony\\Component\\Security\\Core\\Event\\AuthenticationEvent',
'Symfony\\Component\\Security\\Core\\Event\\AuthenticationFailureEvent',
'Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException',
'Symfony\\Component\\Security\\Core\\Exception\\AccountExpiredException',
'Symfony\\Component\\Security\\Core\\Exception\\AccountStatusException',
'Symfony\\Component\\Security\\Core\\Exception\\AuthenticationCredentialsNotFoundException',
'Symfony\\Component\\Security\\Core\\Exception\\AuthenticationException',
'Symfony\\Component\\Security\\Core\\Exception\\AuthenticationServiceException',
'Symfony\\Component\\Security\\Core\\Exception\\BadCredentialsException',
'Symfony\\Component\\Security\\Core\\Exception\\CookieTheftException',
'Symfony\\Component\\Security\\Core\\Exception\\CredentialsExpiredException',
'Symfony\\Component\\Security\\Core\\Exception\\DisabledException',
'Symfony\\Component\\Security\\Core\\Exception\\ExceptionInterface',
'Symfony\\Component\\Security\\Core\\Exception\\InsufficientAuthenticationException',
'Symfony\\Component\\Security\\Core\\Exception\\InvalidArgumentException',
'Symfony\\Component\\Security\\Core\\Exception\\InvalidCsrfTokenException',
'Symfony\\Component\\Security\\Core\\Exception\\LockedException',
'Symfony\\Component\\Security\\Core\\Exception\\LogoutException',
'Symfony\\Component\\Security\\Core\\Exception\\NonceExpiredException',
'Symfony\\Component\\Security\\Core\\Exception\\ProviderNotFoundException',
'Symfony\\Component\\Security\\Core\\Exception\\RuntimeException',
'Symfony\\Component\\Security\\Core\\Exception\\SessionUnavailableException',
'Symfony\\Component\\Security\\Core\\Exception\\TokenNotFoundException',
'Symfony\\Component\\Security\\Core\\Exception\\UnsupportedUserException',
'Symfony\\Component\\Security\\Core\\Exception\\UsernameNotFoundException',
'Symfony\\Component\\Security\\Core\\Role\\Role',
'Symfony\\Component\\Security\\Core\\Role\\RoleHierarchy',
'Symfony\\Component\\Security\\Core\\Role\\RoleHierarchyInterface',
'Symfony\\Component\\Security\\Core\\Role\\RoleInterface',
'Symfony\\Component\\Security\\Core\\Role\\SwitchUserRole',
'Symfony\\Component\\Security\\Core\\Security',
'Symfony\\Component\\Security\\Core\\SecurityContext',
'Symfony\\Component\\Security\\Core\\SecurityContextInterface',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\AuthenticationProviderManagerTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\AuthenticationTrustResolverTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Provider\\AnonymousAuthenticationProviderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Provider\\DaoAuthenticationProviderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Provider\\PreAuthenticatedAuthenticationProviderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Provider\\RememberMeAuthenticationProviderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Provider\\UserAuthenticationProviderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\RememberMe\\InMemoryTokenProviderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\RememberMe\\PersistentTokenTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Token\\AbstractTokenTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Token\\AnonymousTokenTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Token\\ConcreteToken',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Token\\PreAuthenticatedTokenTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Token\\RememberMeTokenTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Token\\Storage\\TokenStorageTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Token\\TestUser',
'Symfony\\Component\\Security\\Core\\Tests\\Authentication\\Token\\UsernamePasswordTokenTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authorization\\AccessDecisionManagerTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authorization\\AuthorizationCheckerTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authorization\\ExpressionLanguageTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authorization\\Voter\\AbstractVoterTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authorization\\Voter\\AbstractVoterTest_Voter',
'Symfony\\Component\\Security\\Core\\Tests\\Authorization\\Voter\\AuthenticatedVoterTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authorization\\Voter\\ExpressionVoterTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authorization\\Voter\\RoleHierarchyVoterTest',
'Symfony\\Component\\Security\\Core\\Tests\\Authorization\\Voter\\RoleVoterTest',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\BCryptPasswordEncoderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\BasePasswordEncoderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\EncAwareUser',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\EncoderFactoryTest',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\MessageDigestPasswordEncoderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\PasswordEncoder',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\Pbkdf2PasswordEncoderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\PlaintextPasswordEncoderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\SomeChildUser',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\SomeUser',
'Symfony\\Component\\Security\\Core\\Tests\\Encoder\\UserPasswordEncoderTest',
'Symfony\\Component\\Security\\Core\\Tests\\Exception\\UsernameNotFoundExceptionTest',
'Symfony\\Component\\Security\\Core\\Tests\\LegacySecurityContextInterfaceTest',
'Symfony\\Component\\Security\\Core\\Tests\\LegacySecurityContextTest',
'Symfony\\Component\\Security\\Core\\Tests\\Role\\RoleHierarchyTest',
'Symfony\\Component\\Security\\Core\\Tests\\Role\\RoleTest',
'Symfony\\Component\\Security\\Core\\Tests\\Role\\SwitchUserRoleTest',
'Symfony\\Component\\Security\\Core\\Tests\\User\\ChainUserProviderTest',
'Symfony\\Component\\Security\\Core\\Tests\\User\\InMemoryUserProviderTest',
'Symfony\\Component\\Security\\Core\\Tests\\User\\UserCheckerTest',
'Symfony\\Component\\Security\\Core\\Tests\\User\\UserTest',
'Symfony\\Component\\Security\\Core\\Tests\\Util\\ClassUtilsTest',
'Symfony\\Component\\Security\\Core\\Tests\\Util\\SecureRandomTest',
'Symfony\\Component\\Security\\Core\\Tests\\Util\\StringUtilsTest',
'Symfony\\Component\\Security\\Core\\Tests\\Util\\TestObject',
'Symfony\\Component\\Security\\Core\\Tests\\Validator\\Constraints\\LegacyUserPasswordValidatorTest',
'Symfony\\Component\\Security\\Core\\Tests\\Validator\\Constraints\\UserPasswordValidatorTest',
'Symfony\\Component\\Security\\Core\\User\\AdvancedUserInterface',
'Symfony\\Component\\Security\\Core\\User\\ChainUserProvider',
'Symfony\\Component\\Security\\Core\\User\\EquatableInterface',
'Symfony\\Component\\Security\\Core\\User\\InMemoryUserProvider',
'Symfony\\Component\\Security\\Core\\User\\User',
'Symfony\\Component\\Security\\Core\\User\\UserChecker',
'Symfony\\Component\\Security\\Core\\User\\UserCheckerInterface',
'Symfony\\Component\\Security\\Core\\User\\UserInterface',
'Symfony\\Component\\Security\\Core\\User\\UserProviderInterface',
'Symfony\\Component\\Security\\Core\\Util\\ClassUtils',
'Symfony\\Component\\Security\\Core\\Util\\SecureRandom',
'Symfony\\Component\\Security\\Core\\Util\\SecureRandomInterface',
'Symfony\\Component\\Security\\Core\\Util\\StringUtils',
'Symfony\\Component\\Security\\Core\\Validator\\Constraints\\UserPassword',
'Symfony\\Component\\Security\\Core\\Validator\\Constraints\\UserPasswordValidator',
'Symfony\\Component\\Security\\Csrf\\CsrfToken',
'Symfony\\Component\\Security\\Csrf\\CsrfTokenManager',
'Symfony\\Component\\Security\\Csrf\\CsrfTokenManagerInterface',
'Symfony\\Component\\Security\\Csrf\\Exception\\TokenNotFoundException',
'Symfony\\Component\\Security\\Csrf\\Tests\\CsrfTokenManagerTest',
'Symfony\\Component\\Security\\Csrf\\Tests\\TokenGenerator\\UriSafeTokenGeneratorTest',
'Symfony\\Component\\Security\\Csrf\\Tests\\TokenStorage\\NativeSessionTokenStorageTest',
'Symfony\\Component\\Security\\Csrf\\Tests\\TokenStorage\\SessionTokenStorageTest',
'Symfony\\Component\\Security\\Csrf\\TokenGenerator\\TokenGeneratorInterface',
'Symfony\\Component\\Security\\Csrf\\TokenGenerator\\UriSafeTokenGenerator',
'Symfony\\Component\\Security\\Csrf\\TokenStorage\\NativeSessionTokenStorage',
'Symfony\\Component\\Security\\Csrf\\TokenStorage\\SessionTokenStorage',
'Symfony\\Component\\Security\\Csrf\\TokenStorage\\TokenStorageInterface',
'Symfony\\Component\\Security\\Http\\AccessMap',
'Symfony\\Component\\Security\\Http\\AccessMapInterface',
'Symfony\\Component\\Security\\Http\\Authentication\\AuthenticationFailureHandlerInterface',
'Symfony\\Component\\Security\\Http\\Authentication\\AuthenticationSuccessHandlerInterface',
'Symfony\\Component\\Security\\Http\\Authentication\\AuthenticationUtils',
'Symfony\\Component\\Security\\Http\\Authentication\\CustomAuthenticationFailureHandler',
'Symfony\\Component\\Security\\Http\\Authentication\\CustomAuthenticationSuccessHandler',
'Symfony\\Component\\Security\\Http\\Authentication\\DefaultAuthenticationFailureHandler',
'Symfony\\Component\\Security\\Http\\Authentication\\DefaultAuthenticationSuccessHandler',
'Symfony\\Component\\Security\\Http\\Authentication\\SimpleAuthenticationHandler',
'Symfony\\Component\\Security\\Http\\Authorization\\AccessDeniedHandlerInterface',
'Symfony\\Component\\Security\\Http\\EntryPoint\\AuthenticationEntryPointInterface',
'Symfony\\Component\\Security\\Http\\EntryPoint\\BasicAuthenticationEntryPoint',
'Symfony\\Component\\Security\\Http\\EntryPoint\\DigestAuthenticationEntryPoint',
'Symfony\\Component\\Security\\Http\\EntryPoint\\FormAuthenticationEntryPoint',
'Symfony\\Component\\Security\\Http\\EntryPoint\\RetryAuthenticationEntryPoint',
'Symfony\\Component\\Security\\Http\\Event\\InteractiveLoginEvent',
'Symfony\\Component\\Security\\Http\\Event\\SwitchUserEvent',
'Symfony\\Component\\Security\\Http\\Firewall',
'Symfony\\Component\\Security\\Http\\FirewallMap',
'Symfony\\Component\\Security\\Http\\FirewallMapInterface',
'Symfony\\Component\\Security\\Http\\Firewall\\AbstractAuthenticationListener',
'Symfony\\Component\\Security\\Http\\Firewall\\AbstractPreAuthenticatedListener',
'Symfony\\Component\\Security\\Http\\Firewall\\AccessListener',
'Symfony\\Component\\Security\\Http\\Firewall\\AnonymousAuthenticationListener',
'Symfony\\Component\\Security\\Http\\Firewall\\BasicAuthenticationListener',
'Symfony\\Component\\Security\\Http\\Firewall\\ChannelListener',
'Symfony\\Component\\Security\\Http\\Firewall\\ContextListener',
'Symfony\\Component\\Security\\Http\\Firewall\\DigestAuthenticationListener',
'Symfony\\Component\\Security\\Http\\Firewall\\DigestData',
'Symfony\\Component\\Security\\Http\\Firewall\\ExceptionListener',
'Symfony\\Component\\Security\\Http\\Firewall\\ListenerInterface',
'Symfony\\Component\\Security\\Http\\Firewall\\LogoutListener',
'Symfony\\Component\\Security\\Http\\Firewall\\RememberMeListener',
'Symfony\\Component\\Security\\Http\\Firewall\\RemoteUserAuthenticationListener',
'Symfony\\Component\\Security\\Http\\Firewall\\SimpleFormAuthenticationListener',
'Symfony\\Component\\Security\\Http\\Firewall\\SimplePreAuthenticationListener',
'Symfony\\Component\\Security\\Http\\Firewall\\SwitchUserListener',
'Symfony\\Component\\Security\\Http\\Firewall\\UsernamePasswordFormAuthenticationListener',
'Symfony\\Component\\Security\\Http\\Firewall\\X509AuthenticationListener',
'Symfony\\Component\\Security\\Http\\HttpUtils',
'Symfony\\Component\\Security\\Http\\Logout\\CookieClearingLogoutHandler',
'Symfony\\Component\\Security\\Http\\Logout\\DefaultLogoutSuccessHandler',
'Symfony\\Component\\Security\\Http\\Logout\\LogoutHandlerInterface',
'Symfony\\Component\\Security\\Http\\Logout\\LogoutSuccessHandlerInterface',
'Symfony\\Component\\Security\\Http\\Logout\\LogoutUrlGenerator',
'Symfony\\Component\\Security\\Http\\Logout\\SessionLogoutHandler',
'Symfony\\Component\\Security\\Http\\RememberMe\\AbstractRememberMeServices',
'Symfony\\Component\\Security\\Http\\RememberMe\\PersistentTokenBasedRememberMeServices',
'Symfony\\Component\\Security\\Http\\RememberMe\\RememberMeServicesInterface',
'Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener',
'Symfony\\Component\\Security\\Http\\RememberMe\\TokenBasedRememberMeServices',
'Symfony\\Component\\Security\\Http\\SecurityEvents',
'Symfony\\Component\\Security\\Http\\Session\\SessionAuthenticationStrategy',
'Symfony\\Component\\Security\\Http\\Session\\SessionAuthenticationStrategyInterface',
'Symfony\\Component\\Security\\Http\\Tests\\AccessMapTest',
'Symfony\\Component\\Security\\Http\\Tests\\Authentication\\DefaultAuthenticationFailureHandlerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Authentication\\DefaultAuthenticationSuccessHandlerTest',
'Symfony\\Component\\Security\\Http\\Tests\\EntryPoint\\BasicAuthenticationEntryPointTest',
'Symfony\\Component\\Security\\Http\\Tests\\EntryPoint\\DigestAuthenticationEntryPointTest',
'Symfony\\Component\\Security\\Http\\Tests\\EntryPoint\\FormAuthenticationEntryPointTest',
'Symfony\\Component\\Security\\Http\\Tests\\EntryPoint\\RetryAuthenticationEntryPointTest',
'Symfony\\Component\\Security\\Http\\Tests\\FirewallMapTest',
'Symfony\\Component\\Security\\Http\\Tests\\FirewallTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\AbstractPreAuthenticatedListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\AccessListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\AnonymousAuthenticationListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\BasicAuthenticationListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\ChannelListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\ContextListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\DigestDataTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\ExceptionListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\LogoutListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\RememberMeListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\RemoteUserAuthenticationListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\SimplePreAuthenticationListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\SwitchUserListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Firewall\\X509AuthenticationListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\HttpUtilsTest',
'Symfony\\Component\\Security\\Http\\Tests\\Logout\\CookieClearingLogoutHandlerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Logout\\DefaultLogoutSuccessHandlerTest',
'Symfony\\Component\\Security\\Http\\Tests\\Logout\\SessionLogoutHandlerTest',
'Symfony\\Component\\Security\\Http\\Tests\\RememberMe\\AbstractRememberMeServicesTest',
'Symfony\\Component\\Security\\Http\\Tests\\RememberMe\\PersistentTokenBasedRememberMeServicesTest',
'Symfony\\Component\\Security\\Http\\Tests\\RememberMe\\ResponseListenerTest',
'Symfony\\Component\\Security\\Http\\Tests\\RememberMe\\TokenBasedRememberMeServicesTest',
'Symfony\\Component\\Security\\Http\\Tests\\Session\\SessionAuthenticationStrategyTest',
'Symfony\\Component\\Security\\Http\\Tests\\SimpleAuthenticationHandlerTest',
'Symfony\\Component\\Security\\Http\\Tests\\TestFailureHandlerInterface',
'Symfony\\Component\\Security\\Http\\Tests\\TestSuccessHandlerInterface',
'Symfony\\Component\\Security\\Tests\\TranslationSyncStatusTest',
'Symfony\\Component\\Serializer\\Annotation\\Groups',
'Symfony\\Component\\Serializer\\Encoder\\ChainDecoder',
'Symfony\\Component\\Serializer\\Encoder\\ChainEncoder',
'Symfony\\Component\\Serializer\\Encoder\\DecoderInterface',
'Symfony\\Component\\Serializer\\Encoder\\EncoderInterface',
'Symfony\\Component\\Serializer\\Encoder\\JsonDecode',
'Symfony\\Component\\Serializer\\Encoder\\JsonEncode',
'Symfony\\Component\\Serializer\\Encoder\\JsonEncoder',
'Symfony\\Component\\Serializer\\Encoder\\NormalizationAwareInterface',
'Symfony\\Component\\Serializer\\Encoder\\SerializerAwareEncoder',
'Symfony\\Component\\Serializer\\Encoder\\XmlEncoder',
'Symfony\\Component\\Serializer\\Exception\\CircularReferenceException',
'Symfony\\Component\\Serializer\\Exception\\Exception',
'Symfony\\Component\\Serializer\\Exception\\ExceptionInterface',
'Symfony\\Component\\Serializer\\Exception\\InvalidArgumentException',
'Symfony\\Component\\Serializer\\Exception\\LogicException',
'Symfony\\Component\\Serializer\\Exception\\MappingException',
'Symfony\\Component\\Serializer\\Exception\\RuntimeException',
'Symfony\\Component\\Serializer\\Exception\\UnexpectedValueException',
'Symfony\\Component\\Serializer\\Exception\\UnsupportedException',
'Symfony\\Component\\Serializer\\Mapping\\AttributeMetadata',
'Symfony\\Component\\Serializer\\Mapping\\AttributeMetadataInterface',
'Symfony\\Component\\Serializer\\Mapping\\ClassMetadata',
'Symfony\\Component\\Serializer\\Mapping\\ClassMetadataInterface',
'Symfony\\Component\\Serializer\\Mapping\\Factory\\ClassMetadataFactory',
'Symfony\\Component\\Serializer\\Mapping\\Factory\\ClassMetadataFactoryInterface',
'Symfony\\Component\\Serializer\\Mapping\\Loader\\AnnotationLoader',
'Symfony\\Component\\Serializer\\Mapping\\Loader\\FileLoader',
'Symfony\\Component\\Serializer\\Mapping\\Loader\\LoaderChain',
'Symfony\\Component\\Serializer\\Mapping\\Loader\\LoaderInterface',
'Symfony\\Component\\Serializer\\Mapping\\Loader\\XmlFileLoader',
'Symfony\\Component\\Serializer\\Mapping\\Loader\\YamlFileLoader',
'Symfony\\Component\\Serializer\\NameConverter\\CamelCaseToSnakeCaseNameConverter',
'Symfony\\Component\\Serializer\\NameConverter\\NameConverterInterface',
'Symfony\\Component\\Serializer\\Normalizer\\AbstractNormalizer',
'Symfony\\Component\\Serializer\\Normalizer\\CustomNormalizer',
'Symfony\\Component\\Serializer\\Normalizer\\DenormalizableInterface',
'Symfony\\Component\\Serializer\\Normalizer\\DenormalizerInterface',
'Symfony\\Component\\Serializer\\Normalizer\\GetSetMethodNormalizer',
'Symfony\\Component\\Serializer\\Normalizer\\NormalizableInterface',
'Symfony\\Component\\Serializer\\Normalizer\\NormalizerInterface',
'Symfony\\Component\\Serializer\\Normalizer\\ObjectNormalizer',
'Symfony\\Component\\Serializer\\Normalizer\\PropertyNormalizer',
'Symfony\\Component\\Serializer\\Normalizer\\SerializerAwareNormalizer',
'Symfony\\Component\\Serializer\\Serializer',
'Symfony\\Component\\Serializer\\SerializerAwareInterface',
'Symfony\\Component\\Serializer\\SerializerInterface',
'Symfony\\Component\\Serializer\\Tests\\Annotation\\GroupsTest',
'Symfony\\Component\\Serializer\\Tests\\Encoder\\JsonEncoderTest',
'Symfony\\Component\\Serializer\\Tests\\Encoder\\XmlEncoderTest',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\CircularReferenceDummy',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\DenormalizableDummy',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\Dummy',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\GroupDummy',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\GroupDummyInterface',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\GroupDummyParent',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\NormalizableTraversableDummy',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\PropertyCircularReferenceDummy',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\PropertySibling',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\PropertySiblingHolder',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\ScalarDummy',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\Sibling',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\SiblingHolder',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\TraversableDummy',
'Symfony\\Component\\Serializer\\Tests\\Fixtures\\VariadicConstructorArgsDummy',
'Symfony\\Component\\Serializer\\Tests\\Mapping\\AttributeMetadataTest',
'Symfony\\Component\\Serializer\\Tests\\Mapping\\ClassMetadataTest',
'Symfony\\Component\\Serializer\\Tests\\Mapping\\Factory\\ClassMetadataFactoryTest',
'Symfony\\Component\\Serializer\\Tests\\Mapping\\Loader\\AnnotationLoaderTest',
'Symfony\\Component\\Serializer\\Tests\\Mapping\\Loader\\XmlFileLoaderTest',
'Symfony\\Component\\Serializer\\Tests\\Mapping\\Loader\\YamlFileLoaderTest',
'Symfony\\Component\\Serializer\\Tests\\Mapping\\TestClassMetadataFactory',
'Symfony\\Component\\Serializer\\Tests\\Model',
'Symfony\\Component\\Serializer\\Tests\\NameConverter\\CamelCaseToSnakeCaseNameConverterTest',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\CustomNormalizerTest',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\GetCamelizedDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\GetConstructorArgsWithDefaultValueDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\GetConstructorDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\GetConstructorOptionalArgsDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\GetSetDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\GetSetMethodNormalizerTest',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\ObjectConstructorArgsWithDefaultValueDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\ObjectConstructorArgsWithPrivateMutatorDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\ObjectConstructorDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\ObjectConstructorOptionalArgsDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\ObjectDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\ObjectNormalizerTest',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\ObjectSerializerNormalizer',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\ObjectWithPrivateSetterDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\PropertyCamelizedDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\PropertyConstructorDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\PropertyDummy',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\PropertyNormalizerTest',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\SerializerNormalizer',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\TestDenormalizer',
'Symfony\\Component\\Serializer\\Tests\\Normalizer\\TestNormalizer',
'Symfony\\Component\\Serializer\\Tests\\SerializerTest',
'Symfony\\Component\\Stopwatch\\Section',
'Symfony\\Component\\Stopwatch\\Stopwatch',
'Symfony\\Component\\Stopwatch\\StopwatchEvent',
'Symfony\\Component\\Stopwatch\\StopwatchPeriod',
'Symfony\\Component\\Stopwatch\\Tests\\StopwatchEventTest',
'Symfony\\Component\\Stopwatch\\Tests\\StopwatchTest',
'Symfony\\Component\\Templating\\Asset\\Package',
'Symfony\\Component\\Templating\\Asset\\PackageInterface',
'Symfony\\Component\\Templating\\Asset\\PathPackage',
'Symfony\\Component\\Templating\\Asset\\UrlPackage',
'Symfony\\Component\\Templating\\DebuggerInterface',
'Symfony\\Component\\Templating\\DelegatingEngine',
'Symfony\\Component\\Templating\\EngineInterface',
'Symfony\\Component\\Templating\\Helper\\AssetsHelper',
'Symfony\\Component\\Templating\\Helper\\CoreAssetsHelper',
'Symfony\\Component\\Templating\\Helper\\Helper',
'Symfony\\Component\\Templating\\Helper\\HelperInterface',
'Symfony\\Component\\Templating\\Helper\\SlotsHelper',
'Symfony\\Component\\Templating\\Loader\\CacheLoader',
'Symfony\\Component\\Templating\\Loader\\ChainLoader',
'Symfony\\Component\\Templating\\Loader\\FilesystemLoader',
'Symfony\\Component\\Templating\\Loader\\Loader',
'Symfony\\Component\\Templating\\Loader\\LoaderInterface',
'Symfony\\Component\\Templating\\PhpEngine',
'Symfony\\Component\\Templating\\Storage\\FileStorage',
'Symfony\\Component\\Templating\\Storage\\Storage',
'Symfony\\Component\\Templating\\Storage\\StringStorage',
'Symfony\\Component\\Templating\\StreamingEngineInterface',
'Symfony\\Component\\Templating\\TemplateNameParser',
'Symfony\\Component\\Templating\\TemplateNameParserInterface',
'Symfony\\Component\\Templating\\TemplateReference',
'Symfony\\Component\\Templating\\TemplateReferenceInterface',
'Symfony\\Component\\Templating\\Tests\\DelegatingEngineTest',
'Symfony\\Component\\Templating\\Tests\\Fixtures\\SimpleHelper',
'Symfony\\Component\\Templating\\Tests\\Helper\\HelperTest',
'Symfony\\Component\\Templating\\Tests\\Helper\\LegacyAssetsHelperTest',
'Symfony\\Component\\Templating\\Tests\\Helper\\LegacyCoreAssetsHelperTest',
'Symfony\\Component\\Templating\\Tests\\Helper\\ProjectTemplateHelper',
'Symfony\\Component\\Templating\\Tests\\Helper\\SlotsHelperTest',
'Symfony\\Component\\Templating\\Tests\\Loader\\CacheLoaderTest',
'Symfony\\Component\\Templating\\Tests\\Loader\\ChainLoaderTest',
'Symfony\\Component\\Templating\\Tests\\Loader\\FilesystemLoaderTest',
'Symfony\\Component\\Templating\\Tests\\Loader\\LoaderTest',
'Symfony\\Component\\Templating\\Tests\\Loader\\ProjectTemplateLoader',
'Symfony\\Component\\Templating\\Tests\\Loader\\ProjectTemplateLoader1',
'Symfony\\Component\\Templating\\Tests\\Loader\\ProjectTemplateLoader2',
'Symfony\\Component\\Templating\\Tests\\Loader\\ProjectTemplateLoader4',
'Symfony\\Component\\Templating\\Tests\\Loader\\ProjectTemplateLoaderVar',
'Symfony\\Component\\Templating\\Tests\\MyStreamingEngine',
'Symfony\\Component\\Templating\\Tests\\PhpEngineTest',
'Symfony\\Component\\Templating\\Tests\\ProjectTemplateEngine',
'Symfony\\Component\\Templating\\Tests\\ProjectTemplateLoader',
'Symfony\\Component\\Templating\\Tests\\Storage\\FileStorageTest',
'Symfony\\Component\\Templating\\Tests\\Storage\\StorageTest',
'Symfony\\Component\\Templating\\Tests\\Storage\\StringStorageTest',
'Symfony\\Component\\Templating\\Tests\\Storage\\TestStorage',
'Symfony\\Component\\Templating\\Tests\\TemplateNameParserTest',
'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation',
'Symfony\\Component\\Translation\\Catalogue\\DiffOperation',
'Symfony\\Component\\Translation\\Catalogue\\MergeOperation',
'Symfony\\Component\\Translation\\Catalogue\\OperationInterface',
'Symfony\\Component\\Translation\\DataCollectorTranslator',
'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector',
'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper',
'Symfony\\Component\\Translation\\Dumper\\DumperInterface',
'Symfony\\Component\\Translation\\Dumper\\FileDumper',
'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper',
'Symfony\\Component\\Translation\\Dumper\\IniFileDumper',
'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper',
'Symfony\\Component\\Translation\\Dumper\\MoFileDumper',
'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper',
'Symfony\\Component\\Translation\\Dumper\\PoFileDumper',
'Symfony\\Component\\Translation\\Dumper\\QtFileDumper',
'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper',
'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper',
'Symfony\\Component\\Translation\\Exception\\ExceptionInterface',
'Symfony\\Component\\Translation\\Exception\\InvalidResourceException',
'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException',
'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor',
'Symfony\\Component\\Translation\\Extractor\\ChainExtractor',
'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface',
'Symfony\\Component\\Translation\\IdentityTranslator',
'Symfony\\Component\\Translation\\Interval',
'Symfony\\Component\\Translation\\Loader\\ArrayLoader',
'Symfony\\Component\\Translation\\Loader\\CsvFileLoader',
'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader',
'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader',
'Symfony\\Component\\Translation\\Loader\\IniFileLoader',
'Symfony\\Component\\Translation\\Loader\\JsonFileLoader',
'Symfony\\Component\\Translation\\Loader\\LoaderInterface',
'Symfony\\Component\\Translation\\Loader\\MoFileLoader',
'Symfony\\Component\\Translation\\Loader\\PhpFileLoader',
'Symfony\\Component\\Translation\\Loader\\PoFileLoader',
'Symfony\\Component\\Translation\\Loader\\QtFileLoader',
'Symfony\\Component\\Translation\\Loader\\XliffFileLoader',
'Symfony\\Component\\Translation\\Loader\\YamlFileLoader',
'Symfony\\Component\\Translation\\LoggingTranslator',
'Symfony\\Component\\Translation\\MessageCatalogue',
'Symfony\\Component\\Translation\\MessageCatalogueInterface',
'Symfony\\Component\\Translation\\MessageSelector',
'Symfony\\Component\\Translation\\MetadataAwareInterface',
'Symfony\\Component\\Translation\\PluralizationRules',
'Symfony\\Component\\Translation\\Tests\\Catalogue\\AbstractOperationTest',
'Symfony\\Component\\Translation\\Tests\\Catalogue\\DiffOperationTest',
'Symfony\\Component\\Translation\\Tests\\Catalogue\\MergeOperationTest',
'Symfony\\Component\\Translation\\Tests\\DataCollectorTranslatorTest',
'Symfony\\Component\\Translation\\Tests\\DataCollector\\TranslationDataCollectorTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\ConcreteFileDumper',
'Symfony\\Component\\Translation\\Tests\\Dumper\\CsvFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\FileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\IcuResFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\IniFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\JsonFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\MoFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\PhpFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\PoFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\QtFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\XliffFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\Dumper\\YamlFileDumperTest',
'Symfony\\Component\\Translation\\Tests\\IdentityTranslatorTest',
'Symfony\\Component\\Translation\\Tests\\IntervalTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\CsvFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\IcuDatFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\IcuResFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\IniFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\JsonFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\LocalizedTestCase',
'Symfony\\Component\\Translation\\Tests\\Loader\\MoFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\PhpFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\PoFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\QtFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\XliffFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\Loader\\YamlFileLoaderTest',
'Symfony\\Component\\Translation\\Tests\\LoggingTranslatorTest',
'Symfony\\Component\\Translation\\Tests\\MessageCatalogueTest',
'Symfony\\Component\\Translation\\Tests\\MessageSelectorTest',
'Symfony\\Component\\Translation\\Tests\\PluralizationRulesTest',
'Symfony\\Component\\Translation\\Tests\\StaleResource',
'Symfony\\Component\\Translation\\Tests\\StringClass',
'Symfony\\Component\\Translation\\Tests\\TranslatorCacheTest',
'Symfony\\Component\\Translation\\Tests\\TranslatorTest',
'Symfony\\Component\\Translation\\Translator',
'Symfony\\Component\\Translation\\TranslatorBagInterface',
'Symfony\\Component\\Translation\\TranslatorInterface',
'Symfony\\Component\\Translation\\Writer\\TranslationWriter',
'Symfony\\Component\\Validator\\ClassBasedInterface',
'Symfony\\Component\\Validator\\Constraint',
'Symfony\\Component\\Validator\\ConstraintValidator',
'Symfony\\Component\\Validator\\ConstraintValidatorFactory',
'Symfony\\Component\\Validator\\ConstraintValidatorFactoryInterface',
'Symfony\\Component\\Validator\\ConstraintValidatorInterface',
'Symfony\\Component\\Validator\\ConstraintViolation',
'Symfony\\Component\\Validator\\ConstraintViolationInterface',
'Symfony\\Component\\Validator\\ConstraintViolationList',
'Symfony\\Component\\Validator\\ConstraintViolationListInterface',
'Symfony\\Component\\Validator\\Constraints\\AbstractComparison',
'Symfony\\Component\\Validator\\Constraints\\AbstractComparisonValidator',
'Symfony\\Component\\Validator\\Constraints\\All',
'Symfony\\Component\\Validator\\Constraints\\AllValidator',
'Symfony\\Component\\Validator\\Constraints\\Blank',
'Symfony\\Component\\Validator\\Constraints\\BlankValidator',
'Symfony\\Component\\Validator\\Constraints\\Callback',
'Symfony\\Component\\Validator\\Constraints\\CallbackValidator',
'Symfony\\Component\\Validator\\Constraints\\CardScheme',
'Symfony\\Component\\Validator\\Constraints\\CardSchemeValidator',
'Symfony\\Component\\Validator\\Constraints\\Choice',
'Symfony\\Component\\Validator\\Constraints\\ChoiceValidator',
'Symfony\\Component\\Validator\\Constraints\\Collection',
'Symfony\\Component\\Validator\\Constraints\\CollectionValidator',
'Symfony\\Component\\Validator\\Constraints\\Collection\\Optional',
'Symfony\\Component\\Validator\\Constraints\\Collection\\Required',
'Symfony\\Component\\Validator\\Constraints\\Composite',
'Symfony\\Component\\Validator\\Constraints\\Count',
'Symfony\\Component\\Validator\\Constraints\\CountValidator',
'Symfony\\Component\\Validator\\Constraints\\Country',
'Symfony\\Component\\Validator\\Constraints\\CountryValidator',
'Symfony\\Component\\Validator\\Constraints\\Currency',
'Symfony\\Component\\Validator\\Constraints\\CurrencyValidator',
'Symfony\\Component\\Validator\\Constraints\\Date',
'Symfony\\Component\\Validator\\Constraints\\DateTime',
'Symfony\\Component\\Validator\\Constraints\\DateTimeValidator',
'Symfony\\Component\\Validator\\Constraints\\DateValidator',
'Symfony\\Component\\Validator\\Constraints\\Email',
'Symfony\\Component\\Validator\\Constraints\\EmailValidator',
'Symfony\\Component\\Validator\\Constraints\\EqualTo',
'Symfony\\Component\\Validator\\Constraints\\EqualToValidator',
'Symfony\\Component\\Validator\\Constraints\\Existence',
'Symfony\\Component\\Validator\\Constraints\\Expression',
'Symfony\\Component\\Validator\\Constraints\\ExpressionValidator',
'Symfony\\Component\\Validator\\Constraints\\False',
'Symfony\\Component\\Validator\\Constraints\\FalseValidator',
'Symfony\\Component\\Validator\\Constraints\\File',
'Symfony\\Component\\Validator\\Constraints\\FileValidator',
'Symfony\\Component\\Validator\\Constraints\\GreaterThan',
'Symfony\\Component\\Validator\\Constraints\\GreaterThanOrEqual',
'Symfony\\Component\\Validator\\Constraints\\GreaterThanOrEqualValidator',
'Symfony\\Component\\Validator\\Constraints\\GreaterThanValidator',
'Symfony\\Component\\Validator\\Constraints\\GroupSequence',
'Symfony\\Component\\Validator\\Constraints\\GroupSequenceProvider',
'Symfony\\Component\\Validator\\Constraints\\Iban',
'Symfony\\Component\\Validator\\Constraints\\IbanValidator',
'Symfony\\Component\\Validator\\Constraints\\IdenticalTo',
'Symfony\\Component\\Validator\\Constraints\\IdenticalToValidator',
'Symfony\\Component\\Validator\\Constraints\\Image',
'Symfony\\Component\\Validator\\Constraints\\ImageValidator',
'Symfony\\Component\\Validator\\Constraints\\Ip',
'Symfony\\Component\\Validator\\Constraints\\IpValidator',
'Symfony\\Component\\Validator\\Constraints\\IsFalse',
'Symfony\\Component\\Validator\\Constraints\\IsFalseValidator',
'Symfony\\Component\\Validator\\Constraints\\IsNull',
'Symfony\\Component\\Validator\\Constraints\\IsNullValidator',
'Symfony\\Component\\Validator\\Constraints\\IsTrue',
'Symfony\\Component\\Validator\\Constraints\\IsTrueValidator',
'Symfony\\Component\\Validator\\Constraints\\Isbn',
'Symfony\\Component\\Validator\\Constraints\\IsbnValidator',
'Symfony\\Component\\Validator\\Constraints\\Issn',
'Symfony\\Component\\Validator\\Constraints\\IssnValidator',
'Symfony\\Component\\Validator\\Constraints\\Language',
'Symfony\\Component\\Validator\\Constraints\\LanguageValidator',
'Symfony\\Component\\Validator\\Constraints\\Length',
'Symfony\\Component\\Validator\\Constraints\\LengthValidator',
'Symfony\\Component\\Validator\\Constraints\\LessThan',
'Symfony\\Component\\Validator\\Constraints\\LessThanOrEqual',
'Symfony\\Component\\Validator\\Constraints\\LessThanOrEqualValidator',
'Symfony\\Component\\Validator\\Constraints\\LessThanValidator',
'Symfony\\Component\\Validator\\Constraints\\Locale',
'Symfony\\Component\\Validator\\Constraints\\LocaleValidator',
'Symfony\\Component\\Validator\\Constraints\\Luhn',
'Symfony\\Component\\Validator\\Constraints\\LuhnValidator',
'Symfony\\Component\\Validator\\Constraints\\NotBlank',
'Symfony\\Component\\Validator\\Constraints\\NotBlankValidator',
'Symfony\\Component\\Validator\\Constraints\\NotEqualTo',
'Symfony\\Component\\Validator\\Constraints\\NotEqualToValidator',
'Symfony\\Component\\Validator\\Constraints\\NotIdenticalTo',
'Symfony\\Component\\Validator\\Constraints\\NotIdenticalToValidator',
'Symfony\\Component\\Validator\\Constraints\\NotNull',
'Symfony\\Component\\Validator\\Constraints\\NotNullValidator',
'Symfony\\Component\\Validator\\Constraints\\Null',
'Symfony\\Component\\Validator\\Constraints\\NullValidator',
'Symfony\\Component\\Validator\\Constraints\\Optional',
'Symfony\\Component\\Validator\\Constraints\\Range',
'Symfony\\Component\\Validator\\Constraints\\RangeValidator',
'Symfony\\Component\\Validator\\Constraints\\Regex',
'Symfony\\Component\\Validator\\Constraints\\RegexValidator',
'Symfony\\Component\\Validator\\Constraints\\Required',
'Symfony\\Component\\Validator\\Constraints\\Time',
'Symfony\\Component\\Validator\\Constraints\\TimeValidator',
'Symfony\\Component\\Validator\\Constraints\\Traverse',
'Symfony\\Component\\Validator\\Constraints\\True',
'Symfony\\Component\\Validator\\Constraints\\TrueValidator',
'Symfony\\Component\\Validator\\Constraints\\Type',
'Symfony\\Component\\Validator\\Constraints\\TypeValidator',
'Symfony\\Component\\Validator\\Constraints\\Url',
'Symfony\\Component\\Validator\\Constraints\\UrlValidator',
'Symfony\\Component\\Validator\\Constraints\\Uuid',
'Symfony\\Component\\Validator\\Constraints\\UuidValidator',
'Symfony\\Component\\Validator\\Constraints\\Valid',
'Symfony\\Component\\Validator\\Context\\ExecutionContext',
'Symfony\\Component\\Validator\\Context\\ExecutionContextFactory',
'Symfony\\Component\\Validator\\Context\\ExecutionContextFactoryInterface',
'Symfony\\Component\\Validator\\Context\\ExecutionContextInterface',
'Symfony\\Component\\Validator\\Context\\LegacyExecutionContext',
'Symfony\\Component\\Validator\\Context\\LegacyExecutionContextFactory',
'Symfony\\Component\\Validator\\DefaultTranslator',
'Symfony\\Component\\Validator\\Exception\\BadMethodCallException',
'Symfony\\Component\\Validator\\Exception\\ConstraintDefinitionException',
'Symfony\\Component\\Validator\\Exception\\ExceptionInterface',
'Symfony\\Component\\Validator\\Exception\\GroupDefinitionException',
'Symfony\\Component\\Validator\\Exception\\InvalidArgumentException',
'Symfony\\Component\\Validator\\Exception\\InvalidOptionsException',
'Symfony\\Component\\Validator\\Exception\\MappingException',
'Symfony\\Component\\Validator\\Exception\\MissingOptionsException',
'Symfony\\Component\\Validator\\Exception\\NoSuchMetadataException',
'Symfony\\Component\\Validator\\Exception\\OutOfBoundsException',
'Symfony\\Component\\Validator\\Exception\\RuntimeException',
'Symfony\\Component\\Validator\\Exception\\UnexpectedTypeException',
'Symfony\\Component\\Validator\\Exception\\UnsupportedMetadataException',
'Symfony\\Component\\Validator\\Exception\\ValidatorException',
'Symfony\\Component\\Validator\\ExecutionContext',
'Symfony\\Component\\Validator\\ExecutionContextInterface',
'Symfony\\Component\\Validator\\GlobalExecutionContextInterface',
'Symfony\\Component\\Validator\\GroupSequenceProviderInterface',
'Symfony\\Component\\Validator\\Mapping\\BlackholeMetadataFactory',
'Symfony\\Component\\Validator\\Mapping\\Cache\\ApcCache',
'Symfony\\Component\\Validator\\Mapping\\Cache\\CacheInterface',
'Symfony\\Component\\Validator\\Mapping\\Cache\\DoctrineCache',
'Symfony\\Component\\Validator\\Mapping\\CascadingStrategy',
'Symfony\\Component\\Validator\\Mapping\\ClassMetadata',
'Symfony\\Component\\Validator\\Mapping\\ClassMetadataFactory',
'Symfony\\Component\\Validator\\Mapping\\ClassMetadataInterface',
'Symfony\\Component\\Validator\\Mapping\\ElementMetadata',
'Symfony\\Component\\Validator\\Mapping\\Factory\\BlackHoleMetadataFactory',
'Symfony\\Component\\Validator\\Mapping\\Factory\\LazyLoadingMetadataFactory',
'Symfony\\Component\\Validator\\Mapping\\Factory\\MetadataFactoryInterface',
'Symfony\\Component\\Validator\\Mapping\\GenericMetadata',
'Symfony\\Component\\Validator\\Mapping\\GetterMetadata',
'Symfony\\Component\\Validator\\Mapping\\Loader\\AbstractLoader',
'Symfony\\Component\\Validator\\Mapping\\Loader\\AnnotationLoader',
'Symfony\\Component\\Validator\\Mapping\\Loader\\FileLoader',
'Symfony\\Component\\Validator\\Mapping\\Loader\\FilesLoader',
'Symfony\\Component\\Validator\\Mapping\\Loader\\LoaderChain',
'Symfony\\Component\\Validator\\Mapping\\Loader\\LoaderInterface',
'Symfony\\Component\\Validator\\Mapping\\Loader\\StaticMethodLoader',
'Symfony\\Component\\Validator\\Mapping\\Loader\\XmlFileLoader',
'Symfony\\Component\\Validator\\Mapping\\Loader\\XmlFilesLoader',
'Symfony\\Component\\Validator\\Mapping\\Loader\\YamlFileLoader',
'Symfony\\Component\\Validator\\Mapping\\Loader\\YamlFilesLoader',
'Symfony\\Component\\Validator\\Mapping\\MemberMetadata',
'Symfony\\Component\\Validator\\Mapping\\MetadataInterface',
'Symfony\\Component\\Validator\\Mapping\\PropertyMetadata',
'Symfony\\Component\\Validator\\Mapping\\PropertyMetadataInterface',
'Symfony\\Component\\Validator\\Mapping\\TraversalStrategy',
'Symfony\\Component\\Validator\\MetadataFactoryInterface',
'Symfony\\Component\\Validator\\MetadataInterface',
'Symfony\\Component\\Validator\\ObjectInitializerInterface',
'Symfony\\Component\\Validator\\PropertyMetadataContainerInterface',
'Symfony\\Component\\Validator\\PropertyMetadataInterface',
'Symfony\\Component\\Validator\\Tests\\ConstraintTest',
'Symfony\\Component\\Validator\\Tests\\ConstraintViolationListTest',
'Symfony\\Component\\Validator\\Tests\\ConstraintViolationTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\AbstractComparisonValidatorTestCase',
'Symfony\\Component\\Validator\\Tests\\Constraints\\AbstractConstraintValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\AllTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\AllValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\BlankValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CallbackValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CallbackValidatorTest_Class',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CallbackValidatorTest_Object',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CardSchemeValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\ChoiceValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CollectionTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CollectionValidatorArrayObjectTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CollectionValidatorArrayTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CollectionValidatorCustomArrayObjectTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CollectionValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\ComparisonTest_Class',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CompositeTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\ConcreteComposite',
'Symfony\\Component\\Validator\\Tests\\Constraints\\ConstraintViolationAssertion',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CountValidatorArrayTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CountValidatorCountableTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CountValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CountryValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\CurrencyValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\DateTimeValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\DateValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\EmailProvider',
'Symfony\\Component\\Validator\\Tests\\Constraints\\EmailValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\EqualToValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\ExpressionValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\FileTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\FileValidatorObjectTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\FileValidatorPathTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\FileValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\GreaterThanOrEqualValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\GreaterThanValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\GroupSequenceTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\IbanValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\IdenticalToValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\ImageValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\IpValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\IsFalseValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\IsNullValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\IsTrueValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\IsbnValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\IssnValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\LanguageValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\LengthValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\LessThanOrEqualValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\LessThanValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\LocaleValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\LuhnValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\NotBlankValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\NotEqualToValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\NotIdenticalToValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\NotNullValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\RangeValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\RegexValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\TimeValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\TypeValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\UrlValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\UuidValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Constraints\\ValidTest',
'Symfony\\Component\\Validator\\Tests\\ExecutionContextTest_TestClass',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\CallbackClass',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\ClassConstraint',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\ConstraintA',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\ConstraintAValidator',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\ConstraintB',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\ConstraintC',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\ConstraintWithValue',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\ConstraintWithValueAsDefault',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\Countable',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\CustomArrayObject',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\Entity',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\EntityInterface',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\EntityParent',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\FailingConstraint',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\FailingConstraintValidator',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\FakeClassMetadata',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\FakeMetadataFactory',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\FilesLoader',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\GroupSequenceProviderEntity',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\InvalidConstraint',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\InvalidConstraintValidator',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\LegacyClassMetadata',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\PropertyConstraint',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\Reference',
'Symfony\\Component\\Validator\\Tests\\Fixtures\\StubGlobalExecutionContext',
'Symfony\\Component\\Validator\\Tests\\LegacyExecutionContextTest',
'Symfony\\Component\\Validator\\Tests\\LegacyValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Cache\\DoctrineCacheTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Cache\\LegacyApcCacheTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\ClassMetadataTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Factory\\BlackHoleMetadataFactoryTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Factory\\LazyLoadingMetadataFactoryTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Factory\\TestLoader',
'Symfony\\Component\\Validator\\Tests\\Mapping\\GetterMetadataTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\LegacyElementMetadataTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\AbstractStaticLoader',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\AbstractStaticMethodLoader',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\AnnotationLoaderTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\BaseStaticLoaderDocument',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\FilesLoaderTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\LoaderChainTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\StaticLoaderDocument',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\StaticLoaderEntity',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\StaticLoaderInterface',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\StaticMethodLoaderTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\XmlFileLoaderTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\Loader\\YamlFileLoaderTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\MemberMetadataTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\PropertyMetadataTest',
'Symfony\\Component\\Validator\\Tests\\Mapping\\TestElementMetadata',
'Symfony\\Component\\Validator\\Tests\\Mapping\\TestMemberMetadata',
'Symfony\\Component\\Validator\\Tests\\Util\\PropertyPathTest',
'Symfony\\Component\\Validator\\Tests\\ValidatorBuilderTest',
'Symfony\\Component\\Validator\\Tests\\Validator\\Abstract2Dot5ApiTest',
'Symfony\\Component\\Validator\\Tests\\Validator\\AbstractLegacyApiTest',
'Symfony\\Component\\Validator\\Tests\\Validator\\AbstractValidatorTest',
'Symfony\\Component\\Validator\\Tests\\Validator\\LegacyValidator2Dot5ApiTest',
'Symfony\\Component\\Validator\\Tests\\Validator\\LegacyValidatorLegacyApiTest',
'Symfony\\Component\\Validator\\Tests\\Validator\\RecursiveValidator2Dot5ApiTest',
'Symfony\\Component\\Validator\\Util\\PropertyPath',
'Symfony\\Component\\Validator\\Validation',
'Symfony\\Component\\Validator\\ValidationVisitor',
'Symfony\\Component\\Validator\\ValidationVisitorInterface',
'Symfony\\Component\\Validator\\Validator',
'Symfony\\Component\\Validator\\ValidatorBuilder',
'Symfony\\Component\\Validator\\ValidatorBuilderInterface',
'Symfony\\Component\\Validator\\ValidatorInterface',
'Symfony\\Component\\Validator\\Validator\\ContextualValidatorInterface',
'Symfony\\Component\\Validator\\Validator\\LegacyValidator',
'Symfony\\Component\\Validator\\Validator\\RecursiveContextualValidator',
'Symfony\\Component\\Validator\\Validator\\RecursiveValidator',
'Symfony\\Component\\Validator\\Validator\\ValidatorInterface',
'Symfony\\Component\\Validator\\Violation\\ConstraintViolationBuilder',
'Symfony\\Component\\Validator\\Violation\\ConstraintViolationBuilderInterface',
'Symfony\\Component\\Validator\\Violation\\LegacyConstraintViolationBuilder',
'Symfony\\Component\\VarDumper\\Caster\\AmqpCaster',
'Symfony\\Component\\VarDumper\\Caster\\Caster',
'Symfony\\Component\\VarDumper\\Caster\\ConstStub',
'Symfony\\Component\\VarDumper\\Caster\\CutStub',
'Symfony\\Component\\VarDumper\\Caster\\DOMCaster',
'Symfony\\Component\\VarDumper\\Caster\\DoctrineCaster',
'Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster',
'Symfony\\Component\\VarDumper\\Caster\\MongoCaster',
'Symfony\\Component\\VarDumper\\Caster\\PdoCaster',
'Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster',
'Symfony\\Component\\VarDumper\\Caster\\ResourceCaster',
'Symfony\\Component\\VarDumper\\Caster\\SplCaster',
'Symfony\\Component\\VarDumper\\Caster\\StubCaster',
'Symfony\\Component\\VarDumper\\Caster\\XmlResourceCaster',
'Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner',
'Symfony\\Component\\VarDumper\\Cloner\\ClonerInterface',
'Symfony\\Component\\VarDumper\\Cloner\\Cursor',
'Symfony\\Component\\VarDumper\\Cloner\\Data',
'Symfony\\Component\\VarDumper\\Cloner\\DumperInterface',
'Symfony\\Component\\VarDumper\\Cloner\\Stub',
'Symfony\\Component\\VarDumper\\Cloner\\VarCloner',
'Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper',
'Symfony\\Component\\VarDumper\\Dumper\\CliDumper',
'Symfony\\Component\\VarDumper\\Dumper\\DataDumperInterface',
'Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper',
'Symfony\\Component\\VarDumper\\Exception\\ThrowingCasterException',
'Symfony\\Component\\VarDumper\\Test\\VarDumperTestCase',
'Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait',
'Symfony\\Component\\VarDumper\\Tests\\Caster\\CasterTest',
'Symfony\\Component\\VarDumper\\Tests\\Caster\\PdoCasterTest',
'Symfony\\Component\\VarDumper\\Tests\\Caster\\ReflectionCasterTest',
'Symfony\\Component\\VarDumper\\Tests\\CliDumperTest',
'Symfony\\Component\\VarDumper\\Tests\\Fixture\\DumbFoo',
'Symfony\\Component\\VarDumper\\Tests\\HtmlDumperTest',
'Symfony\\Component\\VarDumper\\Tests\\Test\\VarDumperTestTraitTest',
'Symfony\\Component\\VarDumper\\Tests\\VarClonerTest',
'Symfony\\Component\\VarDumper\\VarDumper',
'Symfony\\Component\\Yaml\\Dumper',
'Symfony\\Component\\Yaml\\Escaper',
'Symfony\\Component\\Yaml\\Exception\\DumpException',
'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface',
'Symfony\\Component\\Yaml\\Exception\\ParseException',
'Symfony\\Component\\Yaml\\Exception\\RuntimeException',
'Symfony\\Component\\Yaml\\Inline',
'Symfony\\Component\\Yaml\\Parser',
'Symfony\\Component\\Yaml\\Tests\\A',
'Symfony\\Component\\Yaml\\Tests\\B',
'Symfony\\Component\\Yaml\\Tests\\DumperTest',
'Symfony\\Component\\Yaml\\Tests\\InlineTest',
'Symfony\\Component\\Yaml\\Tests\\ParseExceptionTest',
'Symfony\\Component\\Yaml\\Tests\\ParserTest',
'Symfony\\Component\\Yaml\\Tests\\YamlTest',
'Symfony\\Component\\Yaml\\Unescaper',
'Symfony\\Component\\Yaml\\Yaml',
];
$iterations = 5000;
new Bench($jobs, $args, $iterations);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment