Koredge\CoreBundle\Installer\CoreBundleInstaller::installEnvVariables(): Implicitly marking parameter $output as nullable is deprecated, the explicit nullable type must be used instead
The "Koredge\CoreBundle\Security\Voter\JwtRoleVoter::voteOnAttribute()" method will require a new "Vote|null $vote" argument in the next major version of its parent class "Symfony\Component\Security\Core\Authorization\Voter\Voter", not defining it is deprecated.
Koredge\NetworkBundle\Service\UtilsService::curlAction(): Implicitly marking parameter $post as nullable is deprecated, the explicit nullable type must be used instead
Koredge\NetworkBundle\Service\UtilsService::addSQLTranslations(): Implicitly marking parameter $originalTableAlias as nullable is deprecated, the explicit nullable type must be used instead
User Deprecated: Class "Doctrine\ORM\Proxy\Autoloader" is deprecated. Use native lazy objects instead. (Autoloader.php:74 called by DoctrineBundle.php:130, https://github.com/doctrine/orm/pull/12005, package doctrine/orm)
User Deprecated: Since symfony/security-http 7.4: The "Symfony\Component\Security\Http\Firewall\AbstractListener::__invoke()" method is deprecated since Symfony 7.4 and will be removed in 8.0.
"""
SELECT quote_ident(table_name) AS table_name,\n table_schema AS schema_name\nFROM information_schema.tables\nWHERE table_catalog = ?\n AND table_schema NOT LIKE 'pg\_%'\n AND table_schema != 'information_schema'\n AND table_name != 'geometry_columns'\n AND table_name != 'spatial_ref_sys'\n AND table_type = 'BASE TABLE'\nORDER BY\n quote_ident(table_name)
"""
[
"sql" => """
SELECT quote_ident(table_name) AS table_name,\n table_schema AS schema_name\nFROM information_schema.tables\nWHERE table_catalog = ?\n AND table_schema NOT LIKE 'pg\_%'\n AND table_schema != 'information_schema'\n AND table_name != 'geometry_columns'\n AND table_name != 'spatial_ref_sys'\n AND table_type = 'BASE TABLE'\nORDER BY\n quote_ident(table_name)
"""
"params" => [1 => "smart-mobility-sud-bourgogne"
]
"types" => [1 => Doctrine\DBAL\ParameterType {#1483
+name: "STRING"
}
]
]
debug
Executing query:
"SELECT current_schema()"
doctrine
[
"sql" => "SELECT current_schema()"
]
debug
Executing query:
"SELECT CURRENT_DATABASE()"
doctrine
[
"sql" => "SELECT CURRENT_DATABASE()"
]
debug
Executing statement:
"""
SELECT quote_ident(table_name) AS table_name,\n table_schema AS schema_name\nFROM information_schema.tables\nWHERE table_catalog = ?\n AND table_schema NOT LIKE 'pg\_%'\n AND table_schema != 'information_schema'\n AND table_name != 'geometry_columns'\n AND table_name != 'spatial_ref_sys'\n AND table_type = 'BASE TABLE'\nORDER BY\n quote_ident(table_name)
"""
[
"sql" => """
SELECT quote_ident(table_name) AS table_name,\n table_schema AS schema_name\nFROM information_schema.tables\nWHERE table_catalog = ?\n AND table_schema NOT LIKE 'pg\_%'\n AND table_schema != 'information_schema'\n AND table_name != 'geometry_columns'\n AND table_name != 'spatial_ref_sys'\n AND table_type = 'BASE TABLE'\nORDER BY\n quote_ident(table_name)
"""
"params" => [1 => "smart-mobility-sud-bourgogne"
]
"types" => [1 => Doctrine\DBAL\ParameterType {#1483
+name: "STRING"
}
]
]
debug
Executing query:
"SELECT CURRENT_DATABASE()"
doctrine
[
"sql" => "SELECT CURRENT_DATABASE()"
]
debug
Executing statement:
"""
SELECT quote_ident(n.nspname) AS schema_name,\n quote_ident(c.relname) AS table_name,\n quote_ident(a.attname) AS field,\n t.typname AS type,\n format_type(a.atttypid, a.atttypmod) AS complete_type,\n bt.typname AS domain_type,\n format_type(bt.oid, t.typtypmod) AS domain_complete_type,\n a.attnotnull AS isnotnull,\n a.attidentity,\n ( SELECT\n CASE\n WHEN a.attgenerated = 's' THEN NULL\n ELSE pg_get_expr(adbin, adrelid)\n END\n FROM pg_attrdef\n WHERE c.oid = pg_attrdef.adrelid\n AND pg_attrdef.adnum=a.attnum) AS "default",\n dsc.description AS comment,\n CASE\n WHEN coll.collprovider = 'c'\n THEN coll.collcollate\n WHEN coll.collprovider = 'd'\n THEN NULL\n ELSE coll.collname\n END AS collation\nFROM pg_attribute a\n JOIN pg_class c\n ON c.oid = a.attrelid\n JOIN pg_namespace n\n ON n.oid = c.relnamespace\n JOIN pg_type t\n ON t.oid = a.atttypid\n LEFT JOIN pg_type bt\n ON t.typtype = 'd'\n AND bt.oid = t.typbasetype\n LEFT JOIN pg_collation coll\n ON coll.oid = a.attcollation\n LEFT JOIN pg_depend dep\n ON dep.objid = c.oid\n AND dep.deptype = 'e'\n AND dep.classid = (SELECT oid FROM pg_class WHERE relname = 'pg_class')\n LEFT JOIN pg_description dsc\n ON dsc.objoid = c.oid AND dsc.objsubid = a.attnum\n LEFT JOIN pg_inherits i\n ON i.inhrelid = c.oid\n LEFT JOIN pg_class p\n ON i.inhparent = p.oid\n AND p.relkind = 'p'\nWHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')\n -- 'r' for regular tables - 'p' for partitioned tables\n AND c.relkind IN ('r', 'p')\n AND a.attnum > 0\n AND dep.refobjid IS NULL\n -- exclude partitions (tables that inherit from partitioned tables)\n AND p.oid IS NULL\nORDER BY n.nspname,\n c.relname,\n a.attnum
"""
[
"sql" => """
SELECT quote_ident(n.nspname) AS schema_name,\n quote_ident(c.relname) AS table_name,\n quote_ident(a.attname) AS field,\n t.typname AS type,\n format_type(a.atttypid, a.atttypmod) AS complete_type,\n bt.typname AS domain_type,\n format_type(bt.oid, t.typtypmod) AS domain_complete_type,\n a.attnotnull AS isnotnull,\n a.attidentity,\n ( SELECT\n CASE\n WHEN a.attgenerated = 's' THEN NULL\n ELSE pg_get_expr(adbin, adrelid)\n END\n FROM pg_attrdef\n WHERE c.oid = pg_attrdef.adrelid\n AND pg_attrdef.adnum=a.attnum) AS "default",\n dsc.description AS comment,\n CASE\n WHEN coll.collprovider = 'c'\n THEN coll.collcollate\n WHEN coll.collprovider = 'd'\n THEN NULL\n ELSE coll.collname\n END AS collation\nFROM pg_attribute a\n JOIN pg_class c\n ON c.oid = a.attrelid\n JOIN pg_namespace n\n ON n.oid = c.relnamespace\n JOIN pg_type t\n ON t.oid = a.atttypid\n LEFT JOIN pg_type bt\n ON t.typtype = 'd'\n AND bt.oid = t.typbasetype\n LEFT JOIN pg_collation coll\n ON coll.oid = a.attcollation\n LEFT JOIN pg_depend dep\n ON dep.objid = c.oid\n AND dep.deptype = 'e'\n AND dep.classid = (SELECT oid FROM pg_class WHERE relname = 'pg_class')\n LEFT JOIN pg_description dsc\n ON dsc.objoid = c.oid AND dsc.objsubid = a.attnum\n LEFT JOIN pg_inherits i\n ON i.inhrelid = c.oid\n LEFT JOIN pg_class p\n ON i.inhparent = p.oid\n AND p.relkind = 'p'\nWHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')\n -- 'r' for regular tables - 'p' for partitioned tables\n AND c.relkind IN ('r', 'p')\n AND a.attnum > 0\n AND dep.refobjid IS NULL\n -- exclude partitions (tables that inherit from partitioned tables)\n AND p.oid IS NULL\nORDER BY n.nspname,\n c.relname,\n a.attnum
"""
"params" => [1 => "doctrine_migration_versions"
]
"types" => [1 => Doctrine\DBAL\ParameterType {#1483
+name: "STRING"
}
]
]
debug
Executing query:
"SELECT CURRENT_DATABASE()"
doctrine
[
"sql" => "SELECT CURRENT_DATABASE()"
]
debug
Executing statement:
"""
SELECT\n quote_ident(n.nspname) AS schema_name,\n quote_ident(c.relname) AS table_name,\n quote_ident(ic.relname) AS relname,\n i.indisunique,\n i.indisprimary,\n i.indkey,\n i.indrelid,\n pg_get_expr(indpred, indrelid) AS "where",\n quote_ident(attname) AS attname\n FROM pg_index i\n JOIN pg_class AS c ON c.oid = i.indrelid\n JOIN pg_namespace n ON n.oid = c.relnamespace\n JOIN pg_class AS ic ON ic.oid = i.indexrelid\n JOIN LATERAL UNNEST(i.indkey) WITH ORDINALITY AS keys(attnum, ord)\n ON TRUE\n JOIN pg_attribute a\n ON a.attrelid = c.oid\n AND a.attnum = keys.attnum\n WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')\n ORDER BY 1, 2, keys.ord;
"""
[
"sql" => """
SELECT\n quote_ident(n.nspname) AS schema_name,\n quote_ident(c.relname) AS table_name,\n quote_ident(ic.relname) AS relname,\n i.indisunique,\n i.indisprimary,\n i.indkey,\n i.indrelid,\n pg_get_expr(indpred, indrelid) AS "where",\n quote_ident(attname) AS attname\n FROM pg_index i\n JOIN pg_class AS c ON c.oid = i.indrelid\n JOIN pg_namespace n ON n.oid = c.relnamespace\n JOIN pg_class AS ic ON ic.oid = i.indexrelid\n JOIN LATERAL UNNEST(i.indkey) WITH ORDINALITY AS keys(attnum, ord)\n ON TRUE\n JOIN pg_attribute a\n ON a.attrelid = c.oid\n AND a.attnum = keys.attnum\n WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')\n ORDER BY 1, 2, keys.ord;
"""
"params" => [1 => "doctrine_migration_versions"
]
"types" => [1 => Doctrine\DBAL\ParameterType {#1483
+name: "STRING"
}
]
]
debug
Executing query:
"SELECT CURRENT_DATABASE()"
doctrine
[
"sql" => "SELECT CURRENT_DATABASE()"
]
debug
Executing statement:
"""
SELECT\n quote_ident(tn.nspname) AS schema_name,\n quote_ident(tc.relname) AS table_name,\n quote_ident(r.conname) as conname,\n pg_get_constraintdef(r.oid, true) as condef,\n r.condeferrable,\n r.condeferred\n FROM pg_constraint r\n JOIN pg_class AS tc ON tc.oid = r.conrelid\n JOIN pg_namespace tn ON tn.oid = tc.relnamespace\n WHERE r.conrelid IN\n (\n SELECT c.oid\n FROM pg_class c\n JOIN pg_namespace n\n ON n.oid = c.relnamespace\n WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast'))\n AND r.contype = 'f'\n ORDER BY 1, 2
"""
[
"sql" => """
SELECT\n quote_ident(tn.nspname) AS schema_name,\n quote_ident(tc.relname) AS table_name,\n quote_ident(r.conname) as conname,\n pg_get_constraintdef(r.oid, true) as condef,\n r.condeferrable,\n r.condeferred\n FROM pg_constraint r\n JOIN pg_class AS tc ON tc.oid = r.conrelid\n JOIN pg_namespace tn ON tn.oid = tc.relnamespace\n WHERE r.conrelid IN\n (\n SELECT c.oid\n FROM pg_class c\n JOIN pg_namespace n\n ON n.oid = c.relnamespace\n WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast'))\n AND r.contype = 'f'\n ORDER BY 1, 2
"""
"params" => [1 => "doctrine_migration_versions"
]
"types" => [1 => Doctrine\DBAL\ParameterType {#1483
+name: "STRING"
}
]
]
debug
Executing query:
"SELECT CURRENT_DATABASE()"
doctrine
[
"sql" => "SELECT CURRENT_DATABASE()"
]
debug
Executing statement:
"""
SELECT quote_ident(n.nspname) AS schema_name,\n quote_ident(c.relname) AS table_name,\n CASE c.relpersistence WHEN 'u' THEN true ELSE false END as unlogged,\n obj_description(c.oid, 'pg_class') AS comment\nFROM pg_class c\n INNER JOIN pg_namespace n\n ON n.oid = c.relnamespace\nWHERE\n c.relkind = 'r'\n AND n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')
"""
[
"sql" => """
SELECT quote_ident(n.nspname) AS schema_name,\n quote_ident(c.relname) AS table_name,\n CASE c.relpersistence WHEN 'u' THEN true ELSE false END as unlogged,\n obj_description(c.oid, 'pg_class') AS comment\nFROM pg_class c\n INNER JOIN pg_namespace n\n ON n.oid = c.relnamespace\nWHERE\n c.relkind = 'r'\n AND n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')
"""
"params" => [1 => "doctrine_migration_versions"
]
"types" => [1 => Doctrine\DBAL\ParameterType {#1483
+name: "STRING"
}
]
]
debug
Executing query:
"SELECT * FROM doctrine_migration_versions"
doctrine
[
"sql" => "SELECT * FROM doctrine_migration_versions"
]
debug
Executing query:
"SELECT CURRENT_DATABASE()"
doctrine
[
"sql" => "SELECT CURRENT_DATABASE()"
]
There are no log messages.
Container Compilation Logs (2555)
Log messages generated during the compilation of the service container.
Messages
Class
630
Resolving inheritance for "cache.app" (parent: cache.adapter.filesystem).
Resolving inheritance for "cache.system" (parent: cache.adapter.system).
Resolving inheritance for "cache.validator" (parent: cache.system).
Resolving inheritance for "cache.serializer" (parent: cache.system).
Resolving inheritance for "cache.property_info" (parent: cache.system).
Resolving inheritance for "cache.system_clearer" (parent: cache.default_clearer).
Resolving inheritance for "cache.global_clearer" (parent: cache.default_clearer).
Resolving inheritance for "assets._default_package" (parent: assets.path_package).
Resolving inheritance for "mailer.transport_factory.mailjet" (parent: mailer.transport_factory.abstract).
Resolving inheritance for "mailer.transport_factory.native" (parent: mailer.transport_factory.abstract).
Resolving inheritance for "mailer.transport_factory.null" (parent: mailer.transport_factory.abstract).
Resolving inheritance for "mailer.transport_factory.sendmail" (parent: mailer.transport_factory.abstract).
Resolving inheritance for "mailer.transport_factory.smtp" (parent: mailer.transport_factory.abstract).
Resolving inheritance for "secrets.decryption_key" (parent: container.env).
Resolving inheritance for "serializer.name_converter.metadata_aware" (parent: serializer.name_converter.metadata_aware.abstract).
Resolving inheritance for "lock.default.factory" (parent: lock.factory.abstract).
Resolving inheritance for "cache.validator_expression_language" (parent: cache.system).
Resolving inheritance for "notifier.transport_factory.null" (parent: notifier.transport_factory.abstract).
Resolving inheritance for "monolog.logger" (parent: monolog.logger_prototype).
Resolving inheritance for "doctrine.dbal.default_connection.configuration" (parent: doctrine.dbal.connection.configuration).
Resolving inheritance for "doctrine.dbal.default_connection.event_manager" (parent: doctrine.dbal.connection.event_manager).
Resolving inheritance for "doctrine.dbal.default_connection" (parent: doctrine.dbal.connection).
Resolving inheritance for "doctrine.orm.default_configuration" (parent: doctrine.orm.configuration).
Resolving inheritance for "doctrine.orm.default_manager_configurator" (parent: doctrine.orm.manager_configurator.abstract).
Resolving inheritance for "doctrine.orm.default_entity_manager" (parent: doctrine.orm.entity_manager.abstract).
Resolving inheritance for "cache.security_expression_language" (parent: cache.system).
Resolving inheritance for "cache.security_is_granted_attribute_expression_language" (parent: cache.system).
Resolving inheritance for "cache.security_is_csrf_token_valid_attribute_expression_language" (parent: cache.system).
Resolving inheritance for "security.user.provider.concrete.app_user_provider" (parent: doctrine.orm.security.user.provider).
Resolving inheritance for "security.firewall.map.config.dev" (parent: security.firewall.config).
Resolving inheritance for "security.firewall.map.context.dev" (parent: security.firewall.context).
Resolving inheritance for "security.firewall.map.config.login" (parent: security.firewall.config).
Resolving inheritance for "security.listener.login.user_provider" (parent: security.listener.user_provider.abstract).
Resolving inheritance for "security.authenticator.json_login.login" (parent: security.authenticator.json_login).
Resolving inheritance for "security.authentication.success_handler.login.json_login" (parent: security.authentication.custom_success_handler).
Resolving inheritance for "security.authentication.success_handler.login.json_login" (parent: lexik_jwt_authentication.handler.authentication_success).
Resolving inheritance for "security.authentication.failure_handler.login.json_login" (parent: security.authentication.custom_failure_handler).
Resolving inheritance for "security.authentication.failure_handler.login.json_login" (parent: lexik_jwt_authentication.handler.authentication_failure).
Resolving inheritance for "security.authenticator.manager.login" (parent: security.authenticator.manager).
Resolving inheritance for "security.firewall.authenticator.login" (parent: security.firewall.authenticator).
Resolving inheritance for "security.listener.user_checker.login" (parent: security.listener.user_checker).
Resolving inheritance for "security.exception_listener.login" (parent: security.exception_listener).
Resolving inheritance for "security.firewall.map.context.login" (parent: security.firewall.context).
Resolving inheritance for "security.firewall.map.config.api_token_refresh" (parent: security.firewall.config).
Resolving inheritance for "security.listener.api_token_refresh.user_provider" (parent: security.listener.user_provider.abstract).
Resolving inheritance for "security.authenticator.refresh_jwt.api_token_refresh" (parent: gesdinet.jwtrefreshtoken.security.refresh_token_authenticator).
Resolving inheritance for "security.authentication.success_handler.api_token_refresh.refresh_jwt" (parent: gesdinet.jwtrefreshtoken.security.authentication.success_handler).
Resolving inheritance for "security.authentication.failure_handler.api_token_refresh.refresh_jwt" (parent: gesdinet.jwtrefreshtoken.security.authentication.failure_handler).
Resolving inheritance for "security.authenticator.manager.api_token_refresh" (parent: security.authenticator.manager).
Resolving inheritance for "security.firewall.authenticator.api_token_refresh" (parent: security.firewall.authenticator).
Resolving inheritance for "security.listener.user_checker.api_token_refresh" (parent: security.listener.user_checker).
Resolving inheritance for "security.exception_listener.api_token_refresh" (parent: security.exception_listener).
Resolving inheritance for "security.firewall.map.context.api_token_refresh" (parent: security.firewall.context).
Resolving inheritance for "security.firewall.map.config.api_doc" (parent: security.firewall.config).
Resolving inheritance for "security.listener.api_doc.user_provider" (parent: security.listener.user_provider.abstract).
Resolving inheritance for "security.context_listener.0" (parent: security.context_listener).
Resolving inheritance for "security.listener.session.api_doc" (parent: security.listener.session).
Resolving inheritance for "security.logout_listener.api_doc" (parent: security.logout_listener).
Resolving inheritance for "security.logout.listener.default.api_doc" (parent: security.logout.listener.default).
Resolving inheritance for "security.logout.listener.session.api_doc" (parent: security.logout.listener.session).
Resolving inheritance for "security.authenticator.manager.api_doc" (parent: security.authenticator.manager).
Resolving inheritance for "security.firewall.authenticator.api_doc" (parent: security.firewall.authenticator).
Resolving inheritance for "security.listener.user_checker.api_doc" (parent: security.listener.user_checker).
Resolving inheritance for "security.exception_listener.api_doc" (parent: security.exception_listener).
Resolving inheritance for "security.firewall.map.context.api_doc" (parent: security.firewall.lazy_context).
Resolving inheritance for "security.firewall.map.config.api" (parent: security.firewall.config).
Resolving inheritance for "security.listener.api.user_provider" (parent: security.listener.user_provider.abstract).
Resolving inheritance for "security.authenticator.jwt.api" (parent: lexik_jwt_authentication.security.jwt_authenticator).
Resolving inheritance for "security.authenticator.manager.api" (parent: security.authenticator.manager).
Resolving inheritance for "security.firewall.authenticator.api" (parent: security.firewall.authenticator).
Resolving inheritance for "security.listener.user_checker.api" (parent: security.listener.user_checker).
Resolving inheritance for "security.exception_listener.api" (parent: security.exception_listener).
Resolving inheritance for "security.firewall.map.context.api" (parent: security.firewall.context).
Resolving inheritance for "security.firewall.map.config.main" (parent: security.firewall.config).
Resolving inheritance for "security.listener.main.user_provider" (parent: security.listener.user_provider.abstract).
Resolving inheritance for "security.listener.session.main" (parent: security.listener.session).
Resolving inheritance for "security.logout_listener.main" (parent: security.logout_listener).
Resolving inheritance for "security.logout.listener.default.main" (parent: security.logout.listener.default).
Resolving inheritance for "security.logout.listener.session.main" (parent: security.logout.listener.session).
Resolving inheritance for "security.authenticator.manager.main" (parent: security.authenticator.manager).
Resolving inheritance for "security.firewall.authenticator.main" (parent: security.firewall.authenticator).
Resolving inheritance for "security.listener.user_checker.main" (parent: security.listener.user_checker).
Resolving inheritance for "security.exception_listener.main" (parent: security.exception_listener).
Resolving inheritance for "security.firewall.map.context.main" (parent: security.firewall.lazy_context).
Resolving inheritance for "cache.webpack_encore" (parent: cache.system).
Resolving inheritance for "lexik_jwt_authentication.key_loader.raw" (parent: lexik_jwt_authentication.key_loader.abstract).
Resolving inheritance for "cache.ux.twig_component" (parent: cache.system).
Resolving inheritance for ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.Koredge\CoreBundle\Api\Serializer\UidNormalizer" (parent: .abstract.instanceof.Koredge\CoreBundle\Api\Serializer\UidNormalizer).
Resolving inheritance for "Koredge\CoreBundle\Api\Serializer\UidNormalizer" (parent: .instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.Koredge\CoreBundle\Api\Serializer\UidNormalizer).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand.0.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\BundleTranslationExtractorCommand" (parent: .instanceof.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand.0.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand.0.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\CreateHistoryPartitionCommand" (parent: .instanceof.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand.0.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ElasticaCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\ElasticaCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\ElasticaCommand.0.Koredge\CoreBundle\Command\ElasticaCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ElasticaCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\ElasticaCommand" (parent: .instanceof.Koredge\CoreBundle\Command\ElasticaCommand.0.Koredge\CoreBundle\Command\ElasticaCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ExtractAccessesCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\ExtractAccessesCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\ExtractAccessesCommand.0.Koredge\CoreBundle\Command\ExtractAccessesCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ExtractAccessesCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\ExtractAccessesCommand" (parent: .instanceof.Koredge\CoreBundle\Command\ExtractAccessesCommand.0.Koredge\CoreBundle\Command\ExtractAccessesCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand.0.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand" (parent: .instanceof.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand.0.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\InstallCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\InstallCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\InstallCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\InstallCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\NotificationsCleaningCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\NotificationsCleaningCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\NotificationsCleaningCommand.0.Koredge\CoreBundle\Command\NotificationsCleaningCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\NotificationsCleaningCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\NotificationsCleaningCommand" (parent: .instanceof.Koredge\CoreBundle\Command\NotificationsCleaningCommand.0.Koredge\CoreBundle\Command\NotificationsCleaningCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\PermissionCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\PermissionCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\PermissionCommand.0.Koredge\CoreBundle\Command\PermissionCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\PermissionCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\PermissionCommand" (parent: .instanceof.Koredge\CoreBundle\Command\PermissionCommand.0.Koredge\CoreBundle\Command\PermissionCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\PopulateSettingsAPICommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\PopulateSettingsAPICommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\PopulateSettingsAPICommand.0.Koredge\CoreBundle\Command\PopulateSettingsAPICommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\PopulateSettingsAPICommand).
Resolving inheritance for "Koredge\CoreBundle\Command\PopulateSettingsAPICommand" (parent: .instanceof.Koredge\CoreBundle\Command\PopulateSettingsAPICommand.0.Koredge\CoreBundle\Command\PopulateSettingsAPICommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand.0.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand" (parent: .instanceof.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand.0.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\RolePermissionBackupCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\RolePermissionBackupCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\RolePermissionBackupCommand.0.Koredge\CoreBundle\Command\RolePermissionBackupCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\RolePermissionBackupCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\RolePermissionBackupCommand" (parent: .instanceof.Koredge\CoreBundle\Command\RolePermissionBackupCommand.0.Koredge\CoreBundle\Command\RolePermissionBackupCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\RolePermissionRestoreCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\RolePermissionRestoreCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\RolePermissionRestoreCommand.0.Koredge\CoreBundle\Command\RolePermissionRestoreCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\RolePermissionRestoreCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\RolePermissionRestoreCommand" (parent: .instanceof.Koredge\CoreBundle\Command\RolePermissionRestoreCommand.0.Koredge\CoreBundle\Command\RolePermissionRestoreCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\UserAssociationsBackupCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\UserAssociationsBackupCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\UserAssociationsBackupCommand.0.Koredge\CoreBundle\Command\UserAssociationsBackupCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\UserAssociationsBackupCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\UserAssociationsBackupCommand" (parent: .instanceof.Koredge\CoreBundle\Command\UserAssociationsBackupCommand.0.Koredge\CoreBundle\Command\UserAssociationsBackupCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand.0.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\UserAssociationsRestoreCommand" (parent: .instanceof.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand.0.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\FloatingLabelSelect.0.Koredge\CoreBundle\Components\FloatingLabelSelect" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\FloatingLabelSelect).
Resolving inheritance for "Koredge\CoreBundle\Components\FloatingLabelSelect" (parent: .instanceof.Koredge\CoreBundle\Components\FloatingLabelSelect.0.Koredge\CoreBundle\Components\FloatingLabelSelect).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\Listing\Action.0.Koredge\CoreBundle\Components\Listing\Action" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\Listing\Action).
Resolving inheritance for "Koredge\CoreBundle\Components\Listing\Action" (parent: .instanceof.Koredge\CoreBundle\Components\Listing\Action.0.Koredge\CoreBundle\Components\Listing\Action).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\Listing\Actions.0.Koredge\CoreBundle\Components\Listing\Actions" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\Listing\Actions).
Resolving inheritance for "Koredge\CoreBundle\Components\Listing\Actions" (parent: .instanceof.Koredge\CoreBundle\Components\Listing\Actions.0.Koredge\CoreBundle\Components\Listing\Actions).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\Listing\Listing.0.Koredge\CoreBundle\Components\Listing\Listing" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\Listing\Listing).
Resolving inheritance for "Koredge\CoreBundle\Components\Listing\Listing" (parent: .instanceof.Koredge\CoreBundle\Components\Listing\Listing.0.Koredge\CoreBundle\Components\Listing\Listing).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\Listing\Pagination.0.Koredge\CoreBundle\Components\Listing\Pagination" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\Listing\Pagination).
Resolving inheritance for "Koredge\CoreBundle\Components\Listing\Pagination" (parent: .instanceof.Koredge\CoreBundle\Components\Listing\Pagination.0.Koredge\CoreBundle\Components\Listing\Pagination).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\Listing\Section.0.Koredge\CoreBundle\Components\Listing\Section" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\Listing\Section).
Resolving inheritance for "Koredge\CoreBundle\Components\Listing\Section" (parent: .instanceof.Koredge\CoreBundle\Components\Listing\Section.0.Koredge\CoreBundle\Components\Listing\Section).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\Listing\Td.0.Koredge\CoreBundle\Components\Listing\Td" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\Listing\Td).
Resolving inheritance for "Koredge\CoreBundle\Components\Listing\Td" (parent: .instanceof.Koredge\CoreBundle\Components\Listing\Td.0.Koredge\CoreBundle\Components\Listing\Td).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\Listing\TdAction.0.Koredge\CoreBundle\Components\Listing\TdAction" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\Listing\TdAction).
Resolving inheritance for "Koredge\CoreBundle\Components\Listing\TdAction" (parent: .instanceof.Koredge\CoreBundle\Components\Listing\TdAction.0.Koredge\CoreBundle\Components\Listing\TdAction).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\Listing\Th.0.Koredge\CoreBundle\Components\Listing\Th" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\Listing\Th).
Resolving inheritance for "Koredge\CoreBundle\Components\Listing\Th" (parent: .instanceof.Koredge\CoreBundle\Components\Listing\Th.0.Koredge\CoreBundle\Components\Listing\Th).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Components\SelectorComponent" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\SelectorComponent).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Components\SelectorComponent" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Components\SelectorComponent).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\SelectorComponent.0.Koredge\CoreBundle\Components\SelectorComponent" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Components\SelectorComponent).
Resolving inheritance for "Koredge\CoreBundle\Components\SelectorComponent" (parent: .instanceof.Koredge\CoreBundle\Components\SelectorComponent.0.Koredge\CoreBundle\Components\SelectorComponent).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Components\TranslationsComponent" (parent: .abstract.instanceof.Koredge\CoreBundle\Components\TranslationsComponent).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Components\TranslationsComponent" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Components\TranslationsComponent).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Components\TranslationsComponent.0.Koredge\CoreBundle\Components\TranslationsComponent" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Components\TranslationsComponent).
Resolving inheritance for "Koredge\CoreBundle\Components\TranslationsComponent" (parent: .instanceof.Koredge\CoreBundle\Components\TranslationsComponent.0.Koredge\CoreBundle\Components\TranslationsComponent).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\EventListener\Api\JWTCreatedListener.0.Koredge\CoreBundle\EventListener\Api\JWTCreatedListener" (parent: .abstract.instanceof.Koredge\CoreBundle\EventListener\Api\JWTCreatedListener).
Resolving inheritance for "Koredge\CoreBundle\EventListener\Api\JWTCreatedListener" (parent: .instanceof.Koredge\CoreBundle\EventListener\Api\JWTCreatedListener.0.Koredge\CoreBundle\EventListener\Api\JWTCreatedListener).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\EventListener\Entity\LockableListener.0.Koredge\CoreBundle\EventListener\Entity\LockableListener" (parent: .abstract.instanceof.Koredge\CoreBundle\EventListener\Entity\LockableListener).
Resolving inheritance for "Koredge\CoreBundle\EventListener\Entity\LockableListener" (parent: .instanceof.Koredge\CoreBundle\EventListener\Entity\LockableListener.0.Koredge\CoreBundle\EventListener\Entity\LockableListener).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\EventListener\Entity\UidListener.0.Koredge\CoreBundle\EventListener\Entity\UidListener" (parent: .abstract.instanceof.Koredge\CoreBundle\EventListener\Entity\UidListener).
Resolving inheritance for "Koredge\CoreBundle\EventListener\Entity\UidListener" (parent: .instanceof.Koredge\CoreBundle\EventListener\Entity\UidListener.0.Koredge\CoreBundle\EventListener\Entity\UidListener).
Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.Koredge\CoreBundle\EventListener\HttpMetricsListener" (parent: .abstract.instanceof.Koredge\CoreBundle\EventListener\HttpMetricsListener).
Resolving inheritance for "Koredge\CoreBundle\EventListener\HttpMetricsListener" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.Koredge\CoreBundle\EventListener\HttpMetricsListener).
Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.Koredge\CoreBundle\EventListener\Localization\LocaleListener" (parent: .abstract.instanceof.Koredge\CoreBundle\EventListener\Localization\LocaleListener).
Resolving inheritance for "Koredge\CoreBundle\EventListener\Localization\LocaleListener" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.Koredge\CoreBundle\EventListener\Localization\LocaleListener).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\API\ApiFormType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\API\ApiFormType).
Resolving inheritance for "Koredge\CoreBundle\Form\API\ApiFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\API\ApiFormType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ChangePasswordFormType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\ChangePasswordFormType).
Resolving inheritance for "Koredge\CoreBundle\Form\ChangePasswordFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ChangePasswordFormType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ChannelListType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\ChannelListType).
Resolving inheritance for "Koredge\CoreBundle\Form\ChannelListType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ChannelListType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ChannelType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\ChannelType).
Resolving inheritance for "Koredge\CoreBundle\Form\ChannelType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ChannelType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\CoreClosableChoiceType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\CoreClosableChoiceType).
Resolving inheritance for "Koredge\CoreBundle\Form\CoreClosableChoiceType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\CoreClosableChoiceType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\CoreTranslationsType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\CoreTranslationsType).
Resolving inheritance for "Koredge\CoreBundle\Form\CoreTranslationsType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\CoreTranslationsType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\CoreUserType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\CoreUserType).
Resolving inheritance for "Koredge\CoreBundle\Form\CoreUserType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\CoreUserType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\Demo\DemoType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Demo\DemoType).
Resolving inheritance for "Koredge\CoreBundle\Form\Demo\DemoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\Demo\DemoType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\DemoFormType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\DemoFormType).
Resolving inheritance for "Koredge\CoreBundle\Form\DemoFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\DemoFormType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\DemoListingType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\DemoListingType).
Resolving inheritance for "Koredge\CoreBundle\Form\DemoListingType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\DemoListingType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\ButtonTypeExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Extension\ButtonTypeExtension).
Resolving inheritance for "Koredge\CoreBundle\Form\Extension\ButtonTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\ButtonTypeExtension).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\CheckboxTypeExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Extension\CheckboxTypeExtension).
Resolving inheritance for "Koredge\CoreBundle\Form\Extension\CheckboxTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\CheckboxTypeExtension).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\CollectionTypeExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Extension\CollectionTypeExtension).
Resolving inheritance for "Koredge\CoreBundle\Form\Extension\CollectionTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\CollectionTypeExtension).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\DateTypeExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Extension\DateTypeExtension).
Resolving inheritance for "Koredge\CoreBundle\Form\Extension\DateTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\DateTypeExtension).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\DropzoneTypeExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Extension\DropzoneTypeExtension).
Resolving inheritance for "Koredge\CoreBundle\Form\Extension\DropzoneTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\DropzoneTypeExtension).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\FormTypeExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Extension\FormTypeExtension).
Resolving inheritance for "Koredge\CoreBundle\Form\Extension\FormTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\FormTypeExtension).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\NumberTypeExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Extension\NumberTypeExtension).
Resolving inheritance for "Koredge\CoreBundle\Form\Extension\NumberTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\NumberTypeExtension).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\SelectTypeExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Extension\SelectTypeExtension).
Resolving inheritance for "Koredge\CoreBundle\Form\Extension\SelectTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\SelectTypeExtension).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\SubmitTypeExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\Extension\SubmitTypeExtension).
Resolving inheritance for "Koredge\CoreBundle\Form\Extension\SubmitTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\SubmitTypeExtension).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ExternalLinkType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\ExternalLinkType).
Resolving inheritance for "Koredge\CoreBundle\Form\ExternalLinkType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ExternalLinkType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\FilterFieldsType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\FilterFieldsType).
Resolving inheritance for "Koredge\CoreBundle\Form\FilterFieldsType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\FilterFieldsType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\FilterViewType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\FilterViewType).
Resolving inheritance for "Koredge\CoreBundle\Form\FilterViewType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\FilterViewType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\FiltersType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\FiltersType).
Resolving inheritance for "Koredge\CoreBundle\Form\FiltersType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\FiltersType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\HistoryListType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\HistoryListType).
Resolving inheritance for "Koredge\CoreBundle\Form\HistoryListType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\HistoryListType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\LicenseSignatureType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\LicenseSignatureType).
Resolving inheritance for "Koredge\CoreBundle\Form\LicenseSignatureType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\LicenseSignatureType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\LicenseType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\LicenseType).
Resolving inheritance for "Koredge\CoreBundle\Form\LicenseType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\LicenseType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\LogSearchType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\LogSearchType).
Resolving inheritance for "Koredge\CoreBundle\Form\LogSearchType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\LogSearchType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\OfficeType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\OfficeType).
Resolving inheritance for "Koredge\CoreBundle\Form\OfficeType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\OfficeType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ResetPasswordRequestFormType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\ResetPasswordRequestFormType).
Resolving inheritance for "Koredge\CoreBundle\Form\ResetPasswordRequestFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ResetPasswordRequestFormType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\RoleBehaviorType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\RoleBehaviorType).
Resolving inheritance for "Koredge\CoreBundle\Form\RoleBehaviorType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\RoleBehaviorType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\RoleFilterType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\RoleFilterType).
Resolving inheritance for "Koredge\CoreBundle\Form\RoleFilterType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\RoleFilterType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\RoleType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\RoleType).
Resolving inheritance for "Koredge\CoreBundle\Form\RoleType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\RoleType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\UserSettingsType" (parent: .abstract.instanceof.Koredge\CoreBundle\Form\UserSettingsType).
Resolving inheritance for "Koredge\CoreBundle\Form\UserSettingsType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\UserSettingsType).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\API\ApiUserRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\API\ApiUserRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\API\ApiUserRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\API\ApiUserRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\AccessRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\AccessRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\AccessRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\AccessRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ChannelRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\ChannelRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\ChannelRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ChannelRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\CountryRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\CountryRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\CountryRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\CountryRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ExternalLinkRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\ExternalLinkRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\ExternalLinkRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ExternalLinkRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\FileRemovalRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\FileRemovalRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\FileRemovalRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\FileRemovalRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\GroupPermissionRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\GroupPermissionRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\GroupPermissionRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\GroupPermissionRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\HistoryLogRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\HistoryLogRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\HistoryLogRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\HistoryLogRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\InternalLinkRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\InternalLinkRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\InternalLinkRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\InternalLinkRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\LanguageRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\LanguageRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\LanguageRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\LanguageRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\LicenseRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\LicenseRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\LicenseRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\LicenseRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ListingViewRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\ListingViewRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\ListingViewRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ListingViewRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\MunicipalityRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\MunicipalityRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\MunicipalityRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\MunicipalityRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\NotificationRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\NotificationRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\NotificationRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\NotificationRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\NotificationTopicRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\NotificationTopicRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\NotificationTopicRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\NotificationTopicRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\OfficeRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\OfficeRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\OfficeRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\OfficeRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\PermissionModelFilterRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\PermissionModelFilterRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\PermissionModelFilterRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\PermissionModelFilterRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\PermissionModelParameterRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\PermissionModelParameterRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\PermissionModelParameterRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\PermissionModelParameterRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\PermissionRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\PermissionRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\PermissionRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\PermissionRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ResetPasswordRequestRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\ResetPasswordRequestRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\ResetPasswordRequestRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ResetPasswordRequestRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\RoleRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\RoleRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\RoleRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\RoleRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\SettingRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\SettingRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\SettingRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\SettingRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\UserRepository" (parent: .abstract.instanceof.Koredge\CoreBundle\Repository\UserRepository).
Resolving inheritance for "Koredge\CoreBundle\Repository\UserRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\UserRepository).
Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.Koredge\CoreBundle\Security\Voter\JwtRoleVoter" (parent: .abstract.instanceof.Koredge\CoreBundle\Security\Voter\JwtRoleVoter).
Resolving inheritance for "Koredge\CoreBundle\Security\Voter\JwtRoleVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.Koredge\CoreBundle\Security\Voter\JwtRoleVoter).
Resolving inheritance for ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.Koredge\CoreBundle\Serializer\DatetimetzNormalizer" (parent: .abstract.instanceof.Koredge\CoreBundle\Serializer\DatetimetzNormalizer).
Resolving inheritance for "Koredge\CoreBundle\Serializer\DatetimetzNormalizer" (parent: .instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.Koredge\CoreBundle\Serializer\DatetimetzNormalizer).
Resolving inheritance for ".instanceof.Symfony\Component\Serializer\Normalizer\DenormalizerInterface.0.Koredge\CoreBundle\Serializer\EnumDenormalizer" (parent: .abstract.instanceof.Koredge\CoreBundle\Serializer\EnumDenormalizer).
Resolving inheritance for "Koredge\CoreBundle\Serializer\EnumDenormalizer" (parent: .instanceof.Symfony\Component\Serializer\Normalizer\DenormalizerInterface.0.Koredge\CoreBundle\Serializer\EnumDenormalizer).
Resolving inheritance for ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.Koredge\CoreBundle\Serializer\EnumNormalizer" (parent: .abstract.instanceof.Koredge\CoreBundle\Serializer\EnumNormalizer).
Resolving inheritance for "Koredge\CoreBundle\Serializer\EnumNormalizer" (parent: .instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.Koredge\CoreBundle\Serializer\EnumNormalizer).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Breadcrumb" (parent: .abstract.instanceof.Koredge\CoreBundle\Twig\Breadcrumb).
Resolving inheritance for "Koredge\CoreBundle\Twig\Breadcrumb" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Breadcrumb).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Core" (parent: .abstract.instanceof.Koredge\CoreBundle\Twig\Core).
Resolving inheritance for "Koredge\CoreBundle\Twig\Core" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Core).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\DashboardExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Twig\DashboardExtension).
Resolving inheritance for "Koredge\CoreBundle\Twig\DashboardExtension" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\DashboardExtension).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Form" (parent: .abstract.instanceof.Koredge\CoreBundle\Twig\Form).
Resolving inheritance for "Koredge\CoreBundle\Twig\Form" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Form).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\FormExtension" (parent: .abstract.instanceof.Koredge\CoreBundle\Twig\FormExtension).
Resolving inheritance for "Koredge\CoreBundle\Twig\FormExtension" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\FormExtension).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Listing" (parent: .abstract.instanceof.Koredge\CoreBundle\Twig\Listing).
Resolving inheritance for "Koredge\CoreBundle\Twig\Listing" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Listing).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Menu" (parent: .abstract.instanceof.Koredge\CoreBundle\Twig\Menu).
Resolving inheritance for "Koredge\CoreBundle\Twig\Menu" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Menu).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Notification" (parent: .abstract.instanceof.Koredge\CoreBundle\Twig\Notification).
Resolving inheritance for "Koredge\CoreBundle\Twig\Notification" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Notification).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Utils\Utils" (parent: .abstract.instanceof.Koredge\CoreBundle\Twig\Utils\Utils).
Resolving inheritance for "Koredge\CoreBundle\Twig\Utils\Utils" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Utils\Utils).
Resolving inheritance for ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.Koredge\CoreBundle\Validator\Core\FileUploadConstraintValidator" (parent: .abstract.instanceof.Koredge\CoreBundle\Validator\Core\FileUploadConstraintValidator).
Resolving inheritance for "Koredge\CoreBundle\Validator\Core\FileUploadConstraintValidator" (parent: .instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.Koredge\CoreBundle\Validator\Core\FileUploadConstraintValidator).
Resolving inheritance for ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.Koredge\CoreBundle\Validator\Core\FileValidator" (parent: .abstract.instanceof.Koredge\CoreBundle\Validator\Core\FileValidator).
Resolving inheritance for "Koredge\CoreBundle\Validator\Core\FileValidator" (parent: .instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.Koredge\CoreBundle\Validator\Core\FileValidator).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\AccessApiController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\API\AccessApiController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\AccessApiController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\AccessApiController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\API\AccessApiController.0.Koredge\CoreBundle\Controller\API\AccessApiController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\AccessApiController).
Resolving inheritance for "Koredge\CoreBundle\Controller\API\AccessApiController" (parent: .instanceof.Koredge\CoreBundle\Controller\API\AccessApiController.0.Koredge\CoreBundle\Controller\API\AccessApiController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\ApiController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\API\ApiController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\ApiController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\ApiController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\API\ApiController.0.Koredge\CoreBundle\Controller\API\ApiController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\ApiController).
Resolving inheritance for "Koredge\CoreBundle\Controller\API\ApiController" (parent: .instanceof.Koredge\CoreBundle\Controller\API\ApiController.0.Koredge\CoreBundle\Controller\API\ApiController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\HistoryController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\API\HistoryController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\HistoryController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\HistoryController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\API\HistoryController.0.Koredge\CoreBundle\Controller\API\HistoryController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\HistoryController).
Resolving inheritance for "Koredge\CoreBundle\Controller\API\HistoryController" (parent: .instanceof.Koredge\CoreBundle\Controller\API\HistoryController.0.Koredge\CoreBundle\Controller\API\HistoryController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\PaymentMethodController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\API\PaymentMethodController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\PaymentMethodController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\PaymentMethodController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\API\PaymentMethodController.0.Koredge\CoreBundle\Controller\API\PaymentMethodController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\PaymentMethodController).
Resolving inheritance for "Koredge\CoreBundle\Controller\API\PaymentMethodController" (parent: .instanceof.Koredge\CoreBundle\Controller\API\PaymentMethodController.0.Koredge\CoreBundle\Controller\API\PaymentMethodController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\LicenseController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\Access\LicenseController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\LicenseController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\LicenseController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\Access\LicenseController.0.Koredge\CoreBundle\Controller\Access\LicenseController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\LicenseController).
Resolving inheritance for "Koredge\CoreBundle\Controller\Access\LicenseController" (parent: .instanceof.Koredge\CoreBundle\Controller\Access\LicenseController.0.Koredge\CoreBundle\Controller\Access\LicenseController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\OfficeController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\Access\OfficeController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\OfficeController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\OfficeController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\Access\OfficeController.0.Koredge\CoreBundle\Controller\Access\OfficeController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\OfficeController).
Resolving inheritance for "Koredge\CoreBundle\Controller\Access\OfficeController" (parent: .instanceof.Koredge\CoreBundle\Controller\Access\OfficeController.0.Koredge\CoreBundle\Controller\Access\OfficeController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\RoleController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\Access\RoleController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\RoleController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\RoleController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\Access\RoleController.0.Koredge\CoreBundle\Controller\Access\RoleController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\RoleController).
Resolving inheritance for "Koredge\CoreBundle\Controller\Access\RoleController" (parent: .instanceof.Koredge\CoreBundle\Controller\Access\RoleController.0.Koredge\CoreBundle\Controller\Access\RoleController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\UserController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\Access\UserController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\UserController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\UserController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\Access\UserController.0.Koredge\CoreBundle\Controller\Access\UserController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\UserController).
Resolving inheritance for "Koredge\CoreBundle\Controller\Access\UserController" (parent: .instanceof.Koredge\CoreBundle\Controller\Access\UserController.0.Koredge\CoreBundle\Controller\Access\UserController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\DashboardController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\DashboardController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\DashboardController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\DashboardController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\DashboardController.0.Koredge\CoreBundle\Controller\DashboardController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\DashboardController).
Resolving inheritance for "Koredge\CoreBundle\Controller\DashboardController" (parent: .instanceof.Koredge\CoreBundle\Controller\DashboardController.0.Koredge\CoreBundle\Controller\DashboardController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\DemoController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\DemoController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\DemoController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\DemoController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\DemoController.0.Koredge\CoreBundle\Controller\DemoController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\DemoController).
Resolving inheritance for "Koredge\CoreBundle\Controller\DemoController" (parent: .instanceof.Koredge\CoreBundle\Controller\DemoController.0.Koredge\CoreBundle\Controller\DemoController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\DocumentationController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\DocumentationController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\DocumentationController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\DocumentationController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\DocumentationController.0.Koredge\CoreBundle\Controller\DocumentationController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\DocumentationController).
Resolving inheritance for "Koredge\CoreBundle\Controller\DocumentationController" (parent: .instanceof.Koredge\CoreBundle\Controller\DocumentationController.0.Koredge\CoreBundle\Controller\DocumentationController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\HistoryController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\HistoryController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\HistoryController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\HistoryController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\HistoryController.0.Koredge\CoreBundle\Controller\HistoryController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\HistoryController).
Resolving inheritance for "Koredge\CoreBundle\Controller\HistoryController" (parent: .instanceof.Koredge\CoreBundle\Controller\HistoryController.0.Koredge\CoreBundle\Controller\HistoryController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\InterfaceController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\InterfaceController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\InterfaceController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\InterfaceController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\InterfaceController.0.Koredge\CoreBundle\Controller\InterfaceController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\InterfaceController).
Resolving inheritance for "Koredge\CoreBundle\Controller\InterfaceController" (parent: .instanceof.Koredge\CoreBundle\Controller\InterfaceController.0.Koredge\CoreBundle\Controller\InterfaceController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Library\ChannelController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\Library\ChannelController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Library\ChannelController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Library\ChannelController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\Library\ChannelController.0.Koredge\CoreBundle\Controller\Library\ChannelController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Library\ChannelController).
Resolving inheritance for "Koredge\CoreBundle\Controller\Library\ChannelController" (parent: .instanceof.Koredge\CoreBundle\Controller\Library\ChannelController.0.Koredge\CoreBundle\Controller\Library\ChannelController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\LibraryController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\LibraryController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\LibraryController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\LibraryController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\LibraryController.0.Koredge\CoreBundle\Controller\LibraryController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\LibraryController).
Resolving inheritance for "Koredge\CoreBundle\Controller\LibraryController" (parent: .instanceof.Koredge\CoreBundle\Controller\LibraryController.0.Koredge\CoreBundle\Controller\LibraryController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\LogController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\LogController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\LogController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\LogController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\LogController.0.Koredge\CoreBundle\Controller\LogController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\LogController).
Resolving inheritance for "Koredge\CoreBundle\Controller\LogController" (parent: .instanceof.Koredge\CoreBundle\Controller\LogController.0.Koredge\CoreBundle\Controller\LogController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\LoggerController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\LoggerController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\LoggerController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\LoggerController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\LoggerController.0.Koredge\CoreBundle\Controller\LoggerController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\LoggerController).
Resolving inheritance for "Koredge\CoreBundle\Controller\LoggerController" (parent: .instanceof.Koredge\CoreBundle\Controller\LoggerController.0.Koredge\CoreBundle\Controller\LoggerController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\MunicipalityController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\MunicipalityController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\MunicipalityController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\MunicipalityController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\MunicipalityController.0.Koredge\CoreBundle\Controller\MunicipalityController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\MunicipalityController).
Resolving inheritance for "Koredge\CoreBundle\Controller\MunicipalityController" (parent: .instanceof.Koredge\CoreBundle\Controller\MunicipalityController.0.Koredge\CoreBundle\Controller\MunicipalityController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\OAuthController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\OAuthController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\OAuthController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\OAuthController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\OAuthController.0.Koredge\CoreBundle\Controller\OAuthController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\OAuthController).
Resolving inheritance for "Koredge\CoreBundle\Controller\OAuthController" (parent: .instanceof.Koredge\CoreBundle\Controller\OAuthController.0.Koredge\CoreBundle\Controller\OAuthController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\ProfileController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\ProfileController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\ProfileController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\ProfileController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\ProfileController.0.Koredge\CoreBundle\Controller\ProfileController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\ProfileController).
Resolving inheritance for "Koredge\CoreBundle\Controller\ProfileController" (parent: .instanceof.Koredge\CoreBundle\Controller\ProfileController.0.Koredge\CoreBundle\Controller\ProfileController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\ResetPasswordController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\ResetPasswordController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\ResetPasswordController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\ResetPasswordController).
Resolving inheritance for "Koredge\CoreBundle\Controller\ResetPasswordController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\ResetPasswordController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\SecurityController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\SecurityController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\SecurityController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\SecurityController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\SecurityController.0.Koredge\CoreBundle\Controller\SecurityController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\SecurityController).
Resolving inheritance for "Koredge\CoreBundle\Controller\SecurityController" (parent: .instanceof.Koredge\CoreBundle\Controller\SecurityController.0.Koredge\CoreBundle\Controller\SecurityController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\TranslationController" (parent: .abstract.instanceof.Koredge\CoreBundle\Controller\TranslationController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\TranslationController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\TranslationController).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Controller\TranslationController.0.Koredge\CoreBundle\Controller\TranslationController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\TranslationController).
Resolving inheritance for "Koredge\CoreBundle\Controller\TranslationController" (parent: .instanceof.Koredge\CoreBundle\Controller\TranslationController.0.Koredge\CoreBundle\Controller\TranslationController).
Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.core.locale_listener" (parent: .abstract.instanceof.core.locale_listener).
Resolving inheritance for "core.locale_listener" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.core.locale_listener).
Resolving inheritance for ".instanceof.Symfony\Component\PropertyInfo\PropertyListExtractorInterface.0.property_info_extractor" (parent: .abstract.instanceof.property_info_extractor).
Resolving inheritance for ".instanceof.Symfony\Component\PropertyInfo\PropertyTypeExtractorInterface.0.property_info_extractor" (parent: .instanceof.Symfony\Component\PropertyInfo\PropertyListExtractorInterface.0.property_info_extractor).
Resolving inheritance for ".instanceof.Symfony\Component\PropertyInfo\Extractor\ConstructorArgumentTypeExtractorInterface.0.property_info_extractor" (parent: .instanceof.Symfony\Component\PropertyInfo\PropertyTypeExtractorInterface.0.property_info_extractor).
Resolving inheritance for ".instanceof.Symfony\Component\PropertyInfo\PropertyAccessExtractorInterface.0.property_info_extractor" (parent: .instanceof.Symfony\Component\PropertyInfo\Extractor\ConstructorArgumentTypeExtractorInterface.0.property_info_extractor).
Resolving inheritance for ".instanceof.Symfony\Component\PropertyInfo\PropertyInitializableExtractorInterface.0.property_info_extractor" (parent: .instanceof.Symfony\Component\PropertyInfo\PropertyAccessExtractorInterface.0.property_info_extractor).
Resolving inheritance for "property_info_extractor" (parent: .instanceof.Symfony\Component\PropertyInfo\PropertyInitializableExtractorInterface.0.property_info_extractor).
Resolving inheritance for ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.datetime_normalizer" (parent: .abstract.instanceof.datetime_normalizer).
Resolving inheritance for ".instanceof.Symfony\Component\Serializer\Normalizer\DenormalizerInterface.0.datetime_normalizer" (parent: .instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.datetime_normalizer).
Resolving inheritance for "datetime_normalizer" (parent: .instanceof.Symfony\Component\Serializer\Normalizer\DenormalizerInterface.0.datetime_normalizer).
Resolving inheritance for ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.object_normalizer" (parent: .abstract.instanceof.object_normalizer).
Resolving inheritance for ".instanceof.Symfony\Component\Serializer\Normalizer\DenormalizerInterface.0.object_normalizer" (parent: .instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.object_normalizer).
Resolving inheritance for "object_normalizer" (parent: .instanceof.Symfony\Component\Serializer\Normalizer\DenormalizerInterface.0.object_normalizer).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\CodeQualityCommand" (parent: .abstract.instanceof.Koredge\CoreBundle\Command\CodeQualityCommand).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Command\CodeQualityCommand.0.Koredge\CoreBundle\Command\CodeQualityCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\CodeQualityCommand).
Resolving inheritance for "Koredge\CoreBundle\Command\CodeQualityCommand" (parent: .instanceof.Koredge\CoreBundle\Command\CodeQualityCommand.0.Koredge\CoreBundle\Command\CodeQualityCommand).
Resolving inheritance for ".instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.Koredge\CoreBundle\DataFixtures\CoreFixtures" (parent: .abstract.instanceof.Koredge\CoreBundle\DataFixtures\CoreFixtures).
Resolving inheritance for "Koredge\CoreBundle\DataFixtures\CoreFixtures" (parent: .instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.Koredge\CoreBundle\DataFixtures\CoreFixtures).
Resolving inheritance for ".instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.Koredge\CoreBundle\DataFixtures\CountryFixtures" (parent: .abstract.instanceof.Koredge\CoreBundle\DataFixtures\CountryFixtures).
Resolving inheritance for "Koredge\CoreBundle\DataFixtures\CountryFixtures" (parent: .instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.Koredge\CoreBundle\DataFixtures\CountryFixtures).
Resolving inheritance for ".instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.Koredge\CoreBundle\DataFixtures\MunicipalityFixtures" (parent: .abstract.instanceof.Koredge\CoreBundle\DataFixtures\MunicipalityFixtures).
Resolving inheritance for "Koredge\CoreBundle\DataFixtures\MunicipalityFixtures" (parent: .instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.Koredge\CoreBundle\DataFixtures\MunicipalityFixtures).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\AreaController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Api\Controller\AreaController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\AreaController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\AreaController).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Api\Controller\AreaController.0.Koredge\NetworkBundle\Api\Controller\AreaController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\AreaController).
Resolving inheritance for "Koredge\NetworkBundle\Api\Controller\AreaController" (parent: .instanceof.Koredge\NetworkBundle\Api\Controller\AreaController.0.Koredge\NetworkBundle\Api\Controller\AreaController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\DirectionController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Api\Controller\DirectionController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\DirectionController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\DirectionController).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Api\Controller\DirectionController.0.Koredge\NetworkBundle\Api\Controller\DirectionController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\DirectionController).
Resolving inheritance for "Koredge\NetworkBundle\Api\Controller\DirectionController" (parent: .instanceof.Koredge\NetworkBundle\Api\Controller\DirectionController.0.Koredge\NetworkBundle\Api\Controller\DirectionController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\LineController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Api\Controller\LineController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\LineController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\LineController).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Api\Controller\LineController.0.Koredge\NetworkBundle\Api\Controller\LineController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\LineController).
Resolving inheritance for "Koredge\NetworkBundle\Api\Controller\LineController" (parent: .instanceof.Koredge\NetworkBundle\Api\Controller\LineController.0.Koredge\NetworkBundle\Api\Controller\LineController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\PassageController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Api\Controller\PassageController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\PassageController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\PassageController).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Api\Controller\PassageController.0.Koredge\NetworkBundle\Api\Controller\PassageController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\PassageController).
Resolving inheritance for "Koredge\NetworkBundle\Api\Controller\PassageController" (parent: .instanceof.Koredge\NetworkBundle\Api\Controller\PassageController.0.Koredge\NetworkBundle\Api\Controller\PassageController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\StopController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Api\Controller\StopController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\StopController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\StopController).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Api\Controller\StopController.0.Koredge\NetworkBundle\Api\Controller\StopController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\StopController).
Resolving inheritance for "Koredge\NetworkBundle\Api\Controller\StopController" (parent: .instanceof.Koredge\NetworkBundle\Api\Controller\StopController.0.Koredge\NetworkBundle\Api\Controller\StopController).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\NetworkBundle\Command\ImportGtfsCommand" (parent: .abstract.instanceof.Koredge\NetworkBundle\Command\ImportGtfsCommand).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Command\ImportGtfsCommand.0.Koredge\NetworkBundle\Command\ImportGtfsCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.Koredge\NetworkBundle\Command\ImportGtfsCommand).
Resolving inheritance for "Koredge\NetworkBundle\Command\ImportGtfsCommand" (parent: .instanceof.Koredge\NetworkBundle\Command\ImportGtfsCommand.0.Koredge\NetworkBundle\Command\ImportGtfsCommand).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\EventListener\SetActiveListener.0.Koredge\NetworkBundle\EventListener\SetActiveListener" (parent: .abstract.instanceof.Koredge\NetworkBundle\EventListener\SetActiveListener).
Resolving inheritance for "Koredge\NetworkBundle\EventListener\SetActiveListener" (parent: .instanceof.Koredge\NetworkBundle\EventListener\SetActiveListener.0.Koredge\NetworkBundle\EventListener\SetActiveListener).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\AreaListType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\AreaListType).
Resolving inheritance for "Koredge\NetworkBundle\Form\AreaListType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\AreaListType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\AreaType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\AreaType).
Resolving inheritance for "Koredge\NetworkBundle\Form\AreaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\AreaType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\DirectionListType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\DirectionListType).
Resolving inheritance for "Koredge\NetworkBundle\Form\DirectionListType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\DirectionListType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\DirectionType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\DirectionType).
Resolving inheritance for "Koredge\NetworkBundle\Form\DirectionType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\DirectionType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\LineListType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\LineListType).
Resolving inheritance for "Koredge\NetworkBundle\Form\LineListType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\LineListType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\LineType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\LineType).
Resolving inheritance for "Koredge\NetworkBundle\Form\LineType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\LineType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SetListType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\SetListType).
Resolving inheritance for "Koredge\NetworkBundle\Form\SetListType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SetListType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SetType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\SetType).
Resolving inheritance for "Koredge\NetworkBundle\Form\SetType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SetType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\StopPointListType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\StopPointListType).
Resolving inheritance for "Koredge\NetworkBundle\Form\StopPointListType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\StopPointListType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\StopPointType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\StopPointType).
Resolving inheritance for "Koredge\NetworkBundle\Form\StopPointType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\StopPointType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SubSetListType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\SubSetListType).
Resolving inheritance for "Koredge\NetworkBundle\Form\SubSetListType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SubSetListType).
Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SubSetType" (parent: .abstract.instanceof.Koredge\NetworkBundle\Form\SubSetType).
Resolving inheritance for "Koredge\NetworkBundle\Form\SubSetType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SubSetType).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\AreaRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\AreaRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\AreaRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\AreaRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\Disruption\DisruptionItemRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\Disruption\DisruptionItemRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\Disruption\DisruptionItemRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\Disruption\DisruptionItemRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\Disruption\DisruptionReasonRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\Disruption\DisruptionReasonRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\Disruption\DisruptionReasonRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\Disruption\DisruptionReasonRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\Disruption\DisruptionSeverityRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\Disruption\DisruptionSeverityRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\Disruption\DisruptionSeverityRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\Disruption\DisruptionSeverityRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\AgencyRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\AgencyRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\AgencyRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\AgencyRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\AttributionRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\AttributionRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\AttributionRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\AttributionRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\CalendarDateRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\CalendarDateRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\CalendarDateRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\CalendarDateRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\CalendarRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\CalendarRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\CalendarRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\CalendarRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareAttributeRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareAttributeRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\FareAttributeRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareAttributeRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareLegRuleRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareLegRuleRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\FareLegRuleRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareLegRuleRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareMediaRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareMediaRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\FareMediaRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareMediaRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareProductRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareProductRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\FareProductRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareProductRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareRuleRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareRuleRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\FareRuleRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareRuleRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareTransferRuleRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareTransferRuleRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\FareTransferRuleRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareTransferRuleRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FeedInfoRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FeedInfoRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\FeedInfoRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FeedInfoRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FrequencyRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FrequencyRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\FrequencyRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FrequencyRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\LevelRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\LevelRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\LevelRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\LevelRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\PathwayRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\PathwayRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\PathwayRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\PathwayRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\RouteRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\RouteRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\RouteRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\RouteRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\ShapeRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\ShapeRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\ShapeRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\ShapeRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\ShapeTripRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\ShapeTripRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\ShapeTripRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\ShapeTripRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\StopAreaRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\StopAreaRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\StopAreaRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\StopAreaRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\StopTimeRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\StopTimeRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\StopTimeRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\StopTimeRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TimeframeRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\TimeframeRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\TimeframeRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TimeframeRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TransferRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\TransferRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\TransferRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TransferRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TranslationRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\TranslationRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\TranslationRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TranslationRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TripRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\TripRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\GTFS\TripRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TripRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\DirectionRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\KGTFS\DirectionRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\KGTFS\DirectionRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\DirectionRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\LineRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\KGTFS\LineRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\KGTFS\LineRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\LineRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\NetworkItemRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\KGTFS\NetworkItemRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\KGTFS\NetworkItemRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\NetworkItemRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\SubSetRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\KGTFS\SubSetRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\KGTFS\SubSetRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\SubSetRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\NetworkRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\NetworkRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\NetworkRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\NetworkRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\SetRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\SetRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\SetRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\SetRepository).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\StopPointRepository" (parent: .abstract.instanceof.Koredge\NetworkBundle\Repository\StopPointRepository).
Resolving inheritance for "Koredge\NetworkBundle\Repository\StopPointRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\StopPointRepository).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\AreaController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Controller\AreaController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\AreaController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\AreaController).
Resolving inheritance for "Koredge\NetworkBundle\Controller\AreaController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\AreaController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\Dashboard\DashboardController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Controller\Dashboard\DashboardController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\Dashboard\DashboardController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\Dashboard\DashboardController).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Controller\Dashboard\DashboardController.0.Koredge\NetworkBundle\Controller\Dashboard\DashboardController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\Dashboard\DashboardController).
Resolving inheritance for "Koredge\NetworkBundle\Controller\Dashboard\DashboardController" (parent: .instanceof.Koredge\NetworkBundle\Controller\Dashboard\DashboardController.0.Koredge\NetworkBundle\Controller\Dashboard\DashboardController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\DirectionController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Controller\DirectionController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\DirectionController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\DirectionController).
Resolving inheritance for "Koredge\NetworkBundle\Controller\DirectionController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\DirectionController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\LineController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Controller\LineController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\LineController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\LineController).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Controller\LineController.0.Koredge\NetworkBundle\Controller\LineController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\LineController).
Resolving inheritance for "Koredge\NetworkBundle\Controller\LineController" (parent: .instanceof.Koredge\NetworkBundle\Controller\LineController.0.Koredge\NetworkBundle\Controller\LineController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\NetworkController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Controller\NetworkController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\NetworkController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\NetworkController).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Controller\NetworkController.0.Koredge\NetworkBundle\Controller\NetworkController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\NetworkController).
Resolving inheritance for "Koredge\NetworkBundle\Controller\NetworkController" (parent: .instanceof.Koredge\NetworkBundle\Controller\NetworkController.0.Koredge\NetworkBundle\Controller\NetworkController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\StopPointController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Controller\StopPointController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\StopPointController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\StopPointController).
Resolving inheritance for "Koredge\NetworkBundle\Controller\StopPointController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\StopPointController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\SubSetController" (parent: .abstract.instanceof.Koredge\NetworkBundle\Controller\SubSetController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\SubSetController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\SubSetController).
Resolving inheritance for ".instanceof.Koredge\NetworkBundle\Controller\SubSetController.0.Koredge\NetworkBundle\Controller\SubSetController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\SubSetController).
Resolving inheritance for "Koredge\NetworkBundle\Controller\SubSetController" (parent: .instanceof.Koredge\NetworkBundle\Controller\SubSetController.0.Koredge\NetworkBundle\Controller\SubSetController).
Resolving inheritance for ".ux_icons.cache" (parent: cache.system).
Resolving inheritance for "ux_map.renderer_factory.leaflet" (parent: ux_map.renderer_factory.abstract).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\Filterable.0.Koredge\CoreBundle\Attribute\Filterable" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\Filterable).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\Importable.0.Koredge\CoreBundle\Attribute\Importable" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\Importable).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\Indexable.0.Koredge\CoreBundle\Attribute\Indexable" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\Indexable).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\IsGrantedAPI.0.Koredge\CoreBundle\Attribute\IsGrantedAPI" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\IsGrantedAPI).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\Library.0.Koredge\CoreBundle\Attribute\Library" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\Library).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\Listable.0.Koredge\CoreBundle\Attribute\Listable" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\Listable).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\Lockable.0.Koredge\CoreBundle\Attribute\Lockable" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\Lockable).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\Permission.0.Koredge\CoreBundle\Attribute\Permission" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\Permission).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\SettingsAPI.0.Koredge\CoreBundle\Attribute\SettingsAPI" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\SettingsAPI).
Resolving inheritance for ".instanceof.Koredge\CoreBundle\Attribute\Sharable.0.Koredge\CoreBundle\Attribute\Sharable" (parent: .abstract.instanceof.Koredge\CoreBundle\Attribute\Sharable).
Resolving inheritance for ".instanceof.Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface.0.Koredge\CoreBundle\CoreBundle" (parent: .abstract.instanceof.Koredge\CoreBundle\CoreBundle).
Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0..abstract.Koredge\CoreBundle\Repository\UidRepository" (parent: .abstract.instanceof..abstract.Koredge\CoreBundle\Repository\UidRepository).
Resolving inheritance for ".instanceof.UnitEnum.0.Koredge\CoreBundle\Service\History\HistoryActionType" (parent: .abstract.instanceof.Koredge\CoreBundle\Service\History\HistoryActionType).
Resolving inheritance for ".instanceof.UnitEnum.0.Koredge\CoreBundle\Service\History\HistoryOrigin" (parent: .abstract.instanceof.Koredge\CoreBundle\Service\History\HistoryOrigin).
Resolving inheritance for ".instanceof.Symfony\Component\Validator\Constraint.0.Koredge\CoreBundle\Validator\Core\File" (parent: .abstract.instanceof.Koredge\CoreBundle\Validator\Core\File).
Resolving inheritance for ".instanceof.Symfony\Component\Validator\Constraint.0.Koredge\CoreBundle\Validator\Core\FileUploadConstraint" (parent: .abstract.instanceof.Koredge\CoreBundle\Validator\Core\FileUploadConstraint).
Resolving inheritance for ".instanceof.UnitEnum.0.Koredge\NetworkBundle\Enum\GtfsImportStep" (parent: .abstract.instanceof.Koredge\NetworkBundle\Enum\GtfsImportStep).
Resolving inheritance for "maker.auto_command.make_auth" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_command" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_twig_component" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_controller" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_crud" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_docker_database" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_entity" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_fixtures" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_form" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_listener" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_message" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_messenger_middleware" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_registration_form" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_reset_password" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_schedule" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_serializer_encoder" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_serializer_normalizer" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_twig_extension" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_test" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_validator" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_voter" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_user" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_migration" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_stimulus_controller" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_security_form_login" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_security_custom" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_webhook" (parent: maker.auto_command.abstract).
Resolving inheritance for "maker.auto_command.make_autocomplete_field" (parent: maker.auto_command.abstract).
Resolving inheritance for "monolog.logger.request" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.console" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.cache" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.http_client" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.mailer" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.translation" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.php" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.event" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.router" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.lock" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.profiler" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.debug" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.doctrine" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.security" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.deprecation" (parent: monolog.logger_prototype).
Resolving inheritance for "doctrine.dbal.default_schema_asset_filter_manager" (parent: doctrine.dbal.schema_asset_filter_manager).
Resolving inheritance for "doctrine.dbal.logging_middleware.default" (parent: doctrine.dbal.logging_middleware).
Resolving inheritance for "doctrine.dbal.debug_middleware.default" (parent: doctrine.dbal.debug_middleware).
Resolving inheritance for "doctrine.dbal.idle_connection_middleware.default" (parent: doctrine.dbal.idle_connection_middleware).
10
Removing method "setLiveResponder" of service "Koredge\CoreBundle\Components\TranslationsComponent" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing service-argument resolver for controller "Koredge\CoreBundle\Controller\Access\LicenseController::editLicense": no corresponding services exist for the referenced types.
Removing service-argument resolver for controller "Koredge\CoreBundle\Controller\Access\LicenseController::editLicenseGeneral": no corresponding services exist for the referenced types.
Removing service-argument resolver for controller "Koredge\CoreBundle\Controller\Access\LicenseController::editLicenseSignatures": no corresponding services exist for the referenced types.
Removing service-argument resolver for controller "Koredge\CoreBundle\Controller\Access\LicenseController::saveLicense": no corresponding services exist for the referenced types.
Removing service-argument resolver for controller "Koredge\CoreBundle\Controller\Access\LicenseController::deleteLicense": no corresponding services exist for the referenced types.
Removing service-argument resolver for controller "Koredge\CoreBundle\Controller\Access\OfficeController::editOffice": no corresponding services exist for the referenced types.
Removing service-argument resolver for controller "Koredge\CoreBundle\Controller\Access\RoleController::editRole": no corresponding services exist for the referenced types.
Removing service-argument resolver for controller "Koredge\CoreBundle\Controller\Access\RoleController::saveRole": no corresponding services exist for the referenced types.
Removing service-argument resolver for controller "Koredge\CoreBundle\Controller\ProfileController::editExternalLink": no corresponding services exist for the referenced types.
274
Removed service "Symfony\Component\DependencyInjection\ParameterBag\ContainerBagInterface"; reason: private alias.
Removed service "Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface"; reason: private alias.
Removed service "Symfony\Component\EventDispatcher\EventDispatcherInterface"; reason: private alias.
Removed service "Symfony\Contracts\EventDispatcher\EventDispatcherInterface"; reason: private alias.
Removed service "Psr\EventDispatcher\EventDispatcherInterface"; reason: private alias.
Removed service "Symfony\Component\HttpKernel\HttpKernelInterface"; reason: private alias.
Removed service "Symfony\Component\HttpFoundation\RequestStack"; reason: private alias.
Removed service "Symfony\Component\HttpKernel\HttpCache\StoreInterface"; reason: private alias.
Removed service "Symfony\Component\HttpFoundation\UrlHelper"; reason: private alias.
Removed service "Symfony\Component\HttpKernel\KernelInterface"; reason: private alias.
Removed service "Symfony\Component\Filesystem\Filesystem"; reason: private alias.
Removed service "Symfony\Component\HttpKernel\Config\FileLocator"; reason: private alias.
Removed service "Symfony\Component\HttpFoundation\UriSigner"; reason: private alias.
Removed service "Symfony\Component\HttpKernel\DependencyInjection\ServicesResetterInterface"; reason: private alias.
Removed service "Symfony\Component\DependencyInjection\ReverseContainer"; reason: private alias.
Removed service "Symfony\Component\String\Slugger\SluggerInterface"; reason: private alias.
Removed service "Symfony\Component\Clock\ClockInterface"; reason: private alias.
Removed service "Psr\Clock\ClockInterface"; reason: private alias.
Removed service "Symfony\Component\HttpKernel\Fragment\FragmentUriGeneratorInterface"; reason: private alias.
Removed service "error_renderer.html"; reason: private alias.
Removed service "error_renderer"; reason: private alias.
Removed service ".Psr\Container\ContainerInterface $parameter_bag"; reason: private alias.
Removed service "Psr\Container\ContainerInterface $parameterBag"; reason: private alias.
Removed service "cache.adapter.valkey"; reason: private alias.
Removed service "cache.adapter.valkey_tag_aware"; reason: private alias.
Removed service "Psr\Cache\CacheItemPoolInterface"; reason: private alias.
Removed service "Symfony\Contracts\Cache\CacheInterface"; reason: private alias.
Removed service "Symfony\Contracts\Cache\NamespacedPoolInterface"; reason: private alias.
Removed service "Symfony\Contracts\Cache\TagAwareCacheInterface"; reason: private alias.
Removed service "Symfony\Contracts\Translation\TranslatorInterface"; reason: private alias.
Removed service "Symfony\Component\Asset\Packages"; reason: private alias.
Removed service "Symfony\Contracts\HttpClient\HttpClientInterface"; reason: private alias.
Removed service "Psr\Http\Client\ClientInterface"; reason: private alias.
Removed service "mailer"; reason: private alias.
Removed service "Symfony\Component\Mailer\MailerInterface"; reason: private alias.
Removed service "mailer.default_transport"; reason: private alias.
Removed service "Symfony\Component\Mailer\Transport\TransportInterface"; reason: private alias.
Removed service "Symfony\Component\Translation\Reader\TranslationReaderInterface"; reason: private alias.
Removed service "Symfony\Component\Translation\Extractor\ExtractorInterface"; reason: private alias.
Removed service "Symfony\Component\Translation\Writer\TranslationWriterInterface"; reason: private alias.
Removed service "Symfony\Contracts\Translation\LocaleAwareInterface"; reason: private alias.
Removed service "Symfony\Component\Translation\LocaleSwitcher"; reason: private alias.
Removed service "translator.formatter"; reason: private alias.
Removed service "Symfony\Component\ErrorHandler\ErrorRenderer\FileLinkFormatter"; reason: private alias.
Removed service "Symfony\Component\Stopwatch\Stopwatch"; reason: private alias.
Removed service "Symfony\Component\Routing\RouterInterface"; reason: private alias.
Removed service "Symfony\Component\Routing\Generator\UrlGeneratorInterface"; reason: private alias.
Removed service "Symfony\Component\Routing\Matcher\UrlMatcherInterface"; reason: private alias.
Removed service "Symfony\Component\Routing\RequestContextAwareInterface"; reason: private alias.
Removed service "Symfony\Component\Routing\RequestContext"; reason: private alias.
Removed service "Symfony\Component\PropertyAccess\PropertyAccessorInterface"; reason: private alias.
Removed service "Symfony\Component\Serializer\SerializerInterface"; reason: private alias.
Removed service "Symfony\Component\Serializer\Normalizer\NormalizerInterface"; reason: private alias.
Removed service "Symfony\Component\Serializer\Normalizer\DenormalizerInterface"; reason: private alias.
Removed service "Symfony\Component\Serializer\Encoder\EncoderInterface"; reason: private alias.
Removed service "Symfony\Component\Serializer\Encoder\DecoderInterface"; reason: private alias.
Removed service "serializer.property_accessor"; reason: private alias.
Removed service "Symfony\Component\Serializer\Mapping\ClassDiscriminatorResolverInterface"; reason: private alias.
Removed service "Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactoryInterface"; reason: private alias.
Removed service "error_renderer.serializer"; reason: private alias.
Removed service "Symfony\Component\TypeInfo\TypeResolver\TypeResolverInterface"; reason: private alias.
Removed service "Symfony\Component\PropertyInfo\PropertyAccessExtractorInterface"; reason: private alias.
Removed service "Symfony\Component\PropertyInfo\PropertyDescriptionExtractorInterface"; reason: private alias.
Removed service "Symfony\Component\PropertyInfo\PropertyInfoExtractorInterface"; reason: private alias.
Removed service "Symfony\Component\PropertyInfo\PropertyTypeExtractorInterface"; reason: private alias.
Removed service "Symfony\Component\PropertyInfo\PropertyListExtractorInterface"; reason: private alias.
Removed service "Symfony\Component\PropertyInfo\PropertyInitializableExtractorInterface"; reason: private alias.
Removed service "Symfony\Component\PropertyInfo\PropertyReadInfoExtractorInterface"; reason: private alias.
Removed service "Symfony\Component\PropertyInfo\PropertyWriteInfoExtractorInterface"; reason: private alias.
Removed service "lock.factory"; reason: private alias.
Removed service "Symfony\Component\Lock\LockFactory"; reason: private alias.
Removed service "Symfony\Component\WebLink\HttpHeaderSerializer"; reason: private alias.
Removed service "Symfony\Component\Uid\Factory\UlidFactory"; reason: private alias.
Removed service "Symfony\Component\Uid\Factory\UuidFactory"; reason: private alias.
Removed service "Symfony\Component\Uid\Factory\NameBasedUuidFactory"; reason: private alias.
Removed service "Symfony\Component\Uid\Factory\RandomBasedUuidFactory"; reason: private alias.
Removed service "Symfony\Component\Uid\Factory\TimeBasedUuidFactory"; reason: private alias.
Removed service "cache.default_redis_provider"; reason: private alias.
Removed service "cache.default_valkey_provider"; reason: private alias.
Removed service "cache.default_memcached_provider"; reason: private alias.
Removed service "cache.default_doctrine_dbal_provider"; reason: private alias.
Removed service "SessionHandlerInterface"; reason: private alias.
Removed service "session.storage.factory"; reason: private alias.
Removed service "session.handler"; reason: private alias.
Removed service "Symfony\Component\Security\Csrf\TokenGenerator\TokenGeneratorInterface"; reason: private alias.
Removed service "Symfony\Component\Security\Csrf\TokenStorage\TokenStorageInterface"; reason: private alias.
Removed service "Symfony\Component\Security\Csrf\CsrfTokenManagerInterface"; reason: private alias.
Removed service "Symfony\Component\Form\ResolvedFormTypeFactoryInterface"; reason: private alias.
Removed service "Symfony\Component\Form\FormRegistryInterface"; reason: private alias.
Removed service "Symfony\Component\Form\FormFactoryInterface"; reason: private alias.
Removed service "form.property_accessor"; reason: private alias.
Removed service "form.choice_list_factory"; reason: private alias.
Removed service "Symfony\Component\Validator\Validator\ValidatorInterface"; reason: private alias.
Removed service "validator.mapping.class_metadata_factory"; reason: private alias.
Removed service "Symfony\Component\Notifier\NotifierInterface"; reason: private alias.
Removed service "Symfony\Component\Mime\MimeTypesInterface"; reason: private alias.
Removed service "Symfony\Component\Mime\MimeTypeGuesserInterface"; reason: private alias.
Removed service "Twig\Environment"; reason: private alias.
Removed service "Symfony\Component\Mime\BodyRendererInterface"; reason: private alias.
Removed service "logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface"; reason: private alias.
Removed service "Doctrine\DBAL\Connection"; reason: private alias.
Removed service "Doctrine\Persistence\ManagerRegistry"; reason: private alias.
Removed service "Doctrine\Common\Persistence\ManagerRegistry"; reason: private alias.
Removed service "doctrine.dbal.event_manager"; reason: private alias.
Removed service ".Doctrine\DBAL\Connection $default.connection"; reason: private alias.
Removed service "Doctrine\DBAL\Connection $defaultConnection"; reason: private alias.
Removed service "Doctrine\ORM\EntityManagerInterface"; reason: private alias.
Removed service "doctrine.orm.default_metadata_cache"; reason: private alias.
Removed service "doctrine.orm.default_result_cache"; reason: private alias.
Removed service "doctrine.orm.default_query_cache"; reason: private alias.
Removed service ".Doctrine\ORM\EntityManagerInterface $default.entity_manager"; reason: private alias.
Removed service "Doctrine\ORM\EntityManagerInterface $defaultEntityManager"; reason: private alias.
Removed service "doctrine.orm.default_entity_manager.event_manager"; reason: private alias.
Removed service "doctrine.migrations.metadata_storage"; reason: private alias.
Removed service "Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface"; reason: private alias.
Removed service "Symfony\Component\Security\Core\Authorization\UserAuthorizationCheckerInterface"; reason: private alias.
Removed service "Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface"; reason: private alias.
Removed service "Symfony\Bundle\SecurityBundle\Security"; reason: private alias.
Removed service "Symfony\Component\Security\Http\Session\SessionAuthenticationStrategyInterface"; reason: private alias.
Removed service "Symfony\Component\Security\Http\Authentication\AuthenticationUtils"; reason: private alias.
Removed service "Symfony\Component\Security\Core\Authorization\AccessDecisionManagerInterface"; reason: private alias.
Removed service "Symfony\Component\Security\Core\Role\RoleHierarchyInterface"; reason: private alias.
Removed service "Symfony\Component\Security\Http\Firewall"; reason: private alias.
Removed service "Symfony\Component\Security\Http\FirewallMapInterface"; reason: private alias.
Removed service "Symfony\Component\Security\Http\HttpUtils"; reason: private alias.
Removed service "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface"; reason: private alias.
Removed service "security.password_hasher"; reason: private alias.
Removed service "Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface"; reason: private alias.
Removed service "Symfony\Component\Security\Http\Authentication\UserAuthenticatorInterface"; reason: private alias.
Removed service "security.firewall"; reason: private alias.
Removed service "security.user_providers"; reason: private alias.
Removed service "Symfony\Component\Security\Core\User\UserProviderInterface"; reason: private alias.
Removed service "security.authentication.session_strategy.login"; reason: private alias.
Removed service "security.user_checker.login"; reason: private alias.
Removed service "security.authentication.session_strategy.api_token_refresh"; reason: private alias.
Removed service "security.user_checker.api_token_refresh"; reason: private alias.
Removed service "security.authentication.session_strategy.api_doc"; reason: private alias.
Removed service "security.user_checker.api_doc"; reason: private alias.
Removed service "security.authentication.session_strategy.api"; reason: private alias.
Removed service "security.user_checker.api"; reason: private alias.
Removed service "security.authentication.session_strategy.main"; reason: private alias.
Removed service "security.user_checker.main"; reason: private alias.
Removed service "security.firewall.context_locator"; reason: private alias.
Removed service "Symfony\Component\Security\Core\User\UserCheckerInterface"; reason: private alias.
Removed service "KnpU\OAuth2ClientBundle\Client\ClientRegistry"; reason: private alias.
Removed service "KnpU\OAuth2ClientBundle\Client\Provider\KeycloakClient"; reason: private alias.
Removed service "fos_js_routing.router"; reason: private alias.
Removed service "Symfony\WebpackEncoreBundle\Asset\EntrypointLookupCollectionInterface"; reason: private alias.
Removed service "Symfony\WebpackEncoreBundle\Asset\EntrypointLookupInterface"; reason: private alias.
Removed service "Pagerfanta\RouteGenerator\RouteGeneratorFactoryInterface"; reason: private alias.
Removed service "Pagerfanta\View\ViewFactoryInterface"; reason: private alias.
Removed service "Lexik\Bundle\JWTAuthenticationBundle\Services\JWTTokenManagerInterface"; reason: private alias.
Removed service "Lexik\Bundle\JWTAuthenticationBundle\Services\JWSProvider\JWSProviderInterface"; reason: private alias.
Removed service "Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationSuccessHandler"; reason: private alias.
Removed service "Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationFailureHandler"; reason: private alias.
Removed service "Lexik\Bundle\JWTAuthenticationBundle\TokenExtractor\TokenExtractorInterface"; reason: private alias.
Removed service "Lexik\Bundle\JWTAuthenticationBundle\Encoder\JWTEncoderInterface"; reason: private alias.
Removed service "Symfony\UX\TwigComponent\ComponentRendererInterface"; reason: private alias.
Removed service "console.command.stimulus_component_debug"; reason: private alias.
Removed service "Symfony\UX\LiveComponent\LiveResponder"; reason: private alias.
Removed service "Symfony\UX\LiveComponent\ComponentValidatorInterface"; reason: private alias.
Removed service "Symfony\Component\Mercure\Jwt\TokenFactoryInterface $default"; reason: private alias.
Removed service "Symfony\Component\Mercure\Jwt\TokenFactoryInterface $defaultFactory"; reason: private alias.
Removed service "Symfony\Component\Mercure\Jwt\TokenFactoryInterface $defaultTokenFactory"; reason: private alias.
Removed service "Symfony\Component\Mercure\Jwt\TokenProviderInterface $default"; reason: private alias.
Removed service "Symfony\Component\Mercure\Jwt\TokenProviderInterface $defaultProvider"; reason: private alias.
Removed service "Symfony\Component\Mercure\Jwt\TokenProviderInterface $defaultTokenProvider"; reason: private alias.
Removed service "Symfony\Component\Mercure\HubInterface $defaultHub"; reason: private alias.
Removed service "Symfony\Component\Mercure\HubInterface $default"; reason: private alias.
Removed service "Symfony\Component\Mercure\PublisherInterface $defaultPublisher"; reason: private alias.
Removed service "Symfony\Component\Mercure\PublisherInterface $default"; reason: private alias.
Removed service "Symfony\Component\Mercure\HubInterface"; reason: private alias.
Removed service "Symfony\Component\Mercure\Publisher"; reason: private alias.
Removed service "Symfony\Component\Mercure\PublisherInterface"; reason: private alias.
Removed service "SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface"; reason: private alias.
Removed service "acme_api.event.jwt_created_listener"; reason: private alias.
Removed service "Symfony\UX\Turbo\Broadcaster\BroadcasterInterface"; reason: private alias.
Removed service ".ux_icons.icon_registry"; reason: private alias.
Removed service "Symfony\UX\Icons\IconRendererInterface"; reason: private alias.
Removed service "Gesdinet\JWTRefreshTokenBundle\Generator\RefreshTokenGeneratorInterface"; reason: private alias.
Removed service "Gesdinet\JWTRefreshTokenBundle\Model\RefreshTokenManagerInterface"; reason: private alias.
Removed service "Gesdinet\JWTRefreshTokenBundle\Request\Extractor\ExtractorInterface"; reason: private alias.
Removed service "twig.loader.filesystem"; reason: private alias.
Removed service "argument_resolver.controller_locator"; reason: private alias.
Removed service "twig.loader"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $requestLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $consoleLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $cacheLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $http_clientLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $httpClientLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $mailerLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $translationLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $phpLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $eventLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $routerLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $lockLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $profilerLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $debugLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $doctrineLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $securityLogger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $deprecationLogger"; reason: private alias.
Removed service "doctrine.id_generator_locator"; reason: private alias.
Removed service "turbo.mercure.stimulus_helper"; reason: private alias.
Removed service "gesdinet.jwtrefreshtoken.object_manager"; reason: private alias.
Removed service "gesdinet.jwtrefreshtoken.user_checker"; reason: private alias.
Removed service ".service_locator.aJkbb5H"; reason: private alias.
Removed service ".service_locator.rFaQ3.s"; reason: private alias.
Removed service ".service_locator.FglTlK9"; reason: private alias.
Removed service "validator"; reason: private alias.
Removed service "http_client"; reason: private alias.
Removed service ".debug.http_client.inner"; reason: private alias.
Removed service "controller_resolver"; reason: private alias.
Removed service "argument_resolver"; reason: private alias.
Removed service "security.csrf.token_manager"; reason: private alias.
Removed service "translator.data_collector.inner"; reason: private alias.
Removed service "serializer"; reason: private alias.
Removed service "twig.error_renderer.html.inner"; reason: private alias.
Removed service "var_dumper.cli_dumper"; reason: private alias.
Removed service "security.access.decision_manager"; reason: private alias.
Removed service "security.firewall.authenticator.login"; reason: private alias.
Removed service "security.firewall.authenticator.api_token_refresh"; reason: private alias.
Removed service "security.firewall.authenticator.api_doc"; reason: private alias.
Removed service "security.firewall.authenticator.api"; reason: private alias.
Removed service "security.firewall.authenticator.main"; reason: private alias.
Removed service "twig.configurator.environment"; reason: private alias.
Removed service "mercure.hub.default.publisher"; reason: private alias.
Removed service "mercure.hub.default"; reason: private alias.
Removed service "turbo.broadcaster.imux"; reason: private alias.
Removed service "security.event_dispatcher.login"; reason: private alias.
Removed service "security.event_dispatcher.api_token_refresh"; reason: private alias.
Removed service "security.event_dispatcher.api_doc"; reason: private alias.
Removed service "security.event_dispatcher.api"; reason: private alias.
Removed service "security.event_dispatcher.main"; reason: private alias.
Removed service "doctrine.orm.default_metadata_driver"; reason: private alias.
Removed service ".service_locator.c0wzfI4"; reason: private alias.
Removed service ".service_locator.KNqJhYG"; reason: private alias.
Removed service ".service_locator.pzFzKnV"; reason: private alias.
Removed service ".service_locator.YPXQi4q"; reason: private alias.
Removed service ".service_locator.LGNdtg7"; reason: private alias.
Removed service ".service_locator.7huqQJx"; reason: private alias.
Removed service ".service_locator.D.mXeo."; reason: private alias.
Removed service ".service_locator.s5NUGA2"; reason: private alias.
Removed service ".service_locator.QPIdYLI"; reason: private alias.
Removed service ".service_locator.J57f.WG"; reason: private alias.
Removed service ".service_locator.xU2enAO"; reason: private alias.
Removed service ".service_locator._VGRVaw"; reason: private alias.
Removed service ".service_locator.o6bIQv4"; reason: private alias.
Removed service ".service_locator.LtCV.ZY"; reason: private alias.
Removed service ".service_locator.9Y5jTOZ"; reason: private alias.
Removed service ".service_locator..uXMb07"; reason: private alias.
Removed service ".service_locator.cif53Ps"; reason: private alias.
Removed service ".service_locator.rdN9rbG"; reason: private alias.
Removed service ".service_locator.LUGl0h9"; reason: private alias.
Removed service ".service_locator.IRA0dLS"; reason: private alias.
Removed service ".service_locator.p2mpmtL"; reason: private alias.
Removed service ".service_locator.CWoI.zI"; reason: private alias.
Removed service ".service_locator.haerbIb"; reason: private alias.
Removed service ".service_locator.HsFy2wW"; reason: private alias.
Removed service ".service_locator.vVPDe4e"; reason: private alias.
Removed service ".service_locator.75wQbRM"; reason: private alias.
Removed service ".service_locator.0KP5d.3"; reason: private alias.
Removed service ".service_locator.Msbg6jN"; reason: private alias.
Removed service ".service_locator.BHAOqA5"; reason: private alias.
Removed service ".service_locator.6RJTx4E"; reason: private alias.
Removed service ".service_locator.lJ5w_DR"; reason: private alias.
Removed service ".service_locator.c4U2eMx"; reason: private alias.
Removed service ".service_locator.2fJ5IVK"; reason: private alias.
Removed service ".service_locator.96qRgSl"; reason: private alias.
Removed service ".service_locator.idxxeNB"; reason: private alias.
Removed service ".service_locator.TxtrprU"; reason: private alias.
Removed service ".service_locator.sRwvlJU"; reason: private alias.
Removed service ".service_locator.ZVbCPIH"; reason: private alias.
Removed service ".service_locator.0ngK9uf"; reason: private alias.
185
Changed reference of service "argument_resolver.request_payload" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "locale_listener" previously pointing to "router.default" to "router".
Changed reference of service "http_kernel" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "url_helper" previously pointing to "router.default" to "router".
Changed reference of service "services_resetter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "fragment.renderer.inline" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "console.command.router_debug" previously pointing to "router.default" to "router".
Changed reference of service "console.command.router_match" previously pointing to "router.default" to "router".
Changed reference of service "console.command.translation_debug" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "console.command.translation_lint" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "mailer.mailer" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.transport_factory.abstract" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.transport_factory.mailjet" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.transport_factory.native" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.transport_factory.null" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.transport_factory.sendmail" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.transport_factory.smtp" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "router_listener" previously pointing to "router.default" to "router".
Changed reference of service "Symfony\Bundle\FrameworkBundle\Controller\RedirectController" previously pointing to "router.default" to "router".
Changed reference of service "serializer.normalizer.problem" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "serializer.normalizer.translatable" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "form.type.choice" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "form.type.file" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "form.type.color" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "form.type_extension.form.transformation_failure_handling" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "form.type_extension.form.validator" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "form.type_extension.upload.validator" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "form.type_extension.csrf" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "validator.builder" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "notifier.transport_factory.abstract" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "notifier.transport_factory.null" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "console_profiler_listener" previously pointing to "router.default" to "router".
Changed reference of service "data_collector.events" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "data_collector.translation" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "twig.extension.trans" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "twig.extension.routing" previously pointing to "router.default" to "router".
Changed reference of service "twig.extension.form" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "web_profiler.controller.profiler" previously pointing to "router.default" to "router".
Changed reference of service "web_profiler.controller.router" previously pointing to "router.default" to "router".
Changed reference of service "debug.file_link_formatter.url_format" previously pointing to "router.default" to "router".
Changed reference of service "web_profiler.debug_toolbar" previously pointing to "router.default" to "router".
Changed reference of service "doctrine.schema_update_command" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.logout_url_generator" previously pointing to "router.default" to "router".
Changed reference of service "security.http_utils" previously pointing to "router.default" to "router".
Changed reference of service "security.http_utils" previously pointing to "router.default" to "router".
Changed reference of service "security.context_listener" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authentication.listener.abstract" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authentication.switchuser_listener" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authentication.switchuser_listener" previously pointing to "router.default" to "router".
Changed reference of service "security.authenticator.manager" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authenticator.json_login" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "debug.security.firewall" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authenticator.json_login.login" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "security.authentication.success_handler.login.json_login" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authentication.failure_handler.login.json_login" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authentication.failure_handler.login.json_login" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "security.authenticator.refresh_jwt.api_token_refresh" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authentication.success_handler.api_token_refresh.refresh_jwt" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authentication.failure_handler.api_token_refresh.refresh_jwt" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authenticator.jwt.api" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authenticator.jwt.api" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "knpu.oauth2.provider_factory" previously pointing to "router.default" to "router".
Changed reference of service "fos_js_routing.extractor" previously pointing to "router.default" to "router".
Changed reference of service "fos_js_routing.router_debug_exposed_command" previously pointing to "router.default" to "router".
Changed reference of service "webpack_encore.tag_renderer" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "pagerfanta.route_generator_factory" previously pointing to "router.default" to "router".
Changed reference of service "maker.event_registry" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "maker.maker.make_registration_form" previously pointing to "router.default" to "router".
Changed reference of service "maker.maker.make_reset_password" previously pointing to "router.default" to "router".
Changed reference of service "lexik_jwt_authentication.jwt_manager" previously pointing to "lexik_jwt_authentication.encoder.lcobucci" to "lexik_jwt_authentication.encoder".
Changed reference of service "lexik_jwt_authentication.jwt_manager" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.jws_provider.lcobucci" previously pointing to "lexik_jwt_authentication.key_loader.raw" to "lexik_jwt_authentication.key_loader".
Changed reference of service "lexik_jwt_authentication.handler.authentication_success" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.handler.authentication_failure" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.handler.authentication_failure" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "lexik_jwt_authentication.security.jwt_authenticator" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.security.jwt_authenticator" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "lexik_jwt_authentication.check_config_command" previously pointing to "lexik_jwt_authentication.key_loader.raw" to "lexik_jwt_authentication.key_loader".
Changed reference of service "lexik_jwt_authentication.migrate_config_command" previously pointing to "lexik_jwt_authentication.key_loader.raw" to "lexik_jwt_authentication.key_loader".
Changed reference of service "ux.twig_component.component_factory" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "ux.twig_component.component_renderer" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "ux.live_component.twig.component_runtime" previously pointing to "router.default" to "router".
Changed reference of service "ux.live_component.live_controller_attributes_creator" previously pointing to "router.default" to "router".
Changed reference of service "ux.autocomplete.entity_autocomplete_controller" previously pointing to "router.default" to "router".
Changed reference of service "ux.autocomplete.base_entity_type" previously pointing to "router.default" to "router".
Changed reference of service "ux.autocomplete.entity_type" previously pointing to "router.default" to "router".
Changed reference of service "ux.autocomplete.choice_type_extension" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Components\Listing\TdAction" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Components\SelectorComponent" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\EventListener\Security\AccessListener" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\EventListener\Security\AccessListener" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Form\ChangePasswordFormType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\CoreClosableChoiceType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\CoreTranslationsType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\CoreUserType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\Extension\DateTypeExtension" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\ExternalLinkType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\FilterFieldsType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\FilterViewType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\FiltersType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\LicenseSignatureType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\LicenseType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\LogSearchType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\OfficeType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\ResetPasswordRequestFormType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\RoleBehaviorType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\RoleFilterType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\RoleType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Form\UserSettingsType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Security\LoginFormAuthenticator" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Service\Access\AccessService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Service\Api\OpenApiFactory" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "Koredge\CoreBundle\Service\Api\OpenApiFactory" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Service\CoreService" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Service\History\HistoryParserService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Service\History\HistoryUserService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Service\UI\ListingService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Service\UI\ListingService" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Service\UI\MenuService" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Service\Utils\FileService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Service\Utils\UtilsService" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Service\Utils\UtilsService" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Service\Utils\UtilsService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Twig\Breadcrumb" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Twig\Core" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Twig\Menu" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Controller\API\HistoryController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\Access\LicenseController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\Access\OfficeController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\Access\OfficeController" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Controller\Access\RoleController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\Access\RoleController" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Controller\Access\UserController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\Access\UserController" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Controller\ErrorController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\HistoryController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\InterfaceController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\InterfaceController" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Controller\InterfaceController" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\CoreBundle\Controller\Library\ChannelController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\LogController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\MunicipalityController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\ProfileController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\CoreBundle\Controller\ResetPasswordController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "core.listen_route_check_access" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "core.listen_route_check_access" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\NetworkBundle\Api\ListResponseNormalizer" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\NetworkBundle\Command\ImportGtfsCommand" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Form\AreaType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Form\DirectionType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Form\LineType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Form\SetType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Form\SubSetType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Service\DashboardService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Service\GtfsService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Service\NetworkFormHandler" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Service\NetworkSetValidator" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Service\NetworkStatisticsService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Service\OptimizedGtfsService" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Service\UtilsService" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\NetworkBundle\Service\UtilsService" previously pointing to "router.default" to "router".
Changed reference of service "Koredge\NetworkBundle\Controller\AreaController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Controller\DirectionController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Controller\LineController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Controller\NetworkController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Controller\StopPointController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Koredge\NetworkBundle\Controller\SubSetController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "gesdinet.jwtrefreshtoken" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "gesdinet.jwtrefreshtoken.security.authentication.failure_handler" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "gesdinet.jwtrefreshtoken.security.authentication.success_handler" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "gesdinet.jwtrefreshtoken.security.refresh_token_authenticator" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "ux.translator.cache_warmer.translations_cache_warmer" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.A42T3Re" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.f8pLBFr" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.RxTwYvm" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".debug.security.voter.security.access.authenticated_voter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".debug.security.voter.security.access.simple_role_voter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".debug.security.voter.security.access.expression_voter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".debug.security.voter.security.access.closure_voter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".debug.security.voter.Koredge\CoreBundle\Security\Voter\JwtRoleVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.kvOAK9B" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.mFBT25N" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.67JNR4b" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.PTgIexa" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.9NqBZVG" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
683
Removed service "container.env"; reason: abstract.
Removed service "Symfony\Component\Config\Loader\LoaderInterface"; reason: abstract.
Removed service "Symfony\Component\HttpFoundation\Request"; reason: abstract.
Removed service "Symfony\Component\HttpFoundation\Response"; reason: abstract.
Removed service "Symfony\Component\HttpFoundation\Session\SessionInterface"; reason: abstract.
Removed service "cache.adapter.system"; reason: abstract.
Removed service "cache.adapter.apcu"; reason: abstract.
Removed service "cache.adapter.filesystem"; reason: abstract.
Removed service "cache.adapter.psr6"; reason: abstract.
Removed service "cache.adapter.redis"; reason: abstract.
Removed service "cache.adapter.redis_tag_aware"; reason: abstract.
Removed service "cache.adapter.memcached"; reason: abstract.
Removed service "cache.adapter.doctrine_dbal"; reason: abstract.
Removed service "cache.adapter.pdo"; reason: abstract.
Removed service "cache.adapter.array"; reason: abstract.
Removed service "assets.path_package"; reason: abstract.
Removed service "assets.url_package"; reason: abstract.
Removed service "assets.static_version_strategy"; reason: abstract.
Removed service "assets.json_manifest_version_strategy"; reason: abstract.
Removed service "http_client.abstract_retry_strategy"; reason: abstract.
Removed service "mailer.transport_factory.abstract"; reason: abstract.
Removed service "serializer.name_converter.metadata_aware.abstract"; reason: abstract.
Removed service "lock.store.combined.abstract"; reason: abstract.
Removed service "lock.factory.abstract"; reason: abstract.
Removed service ".abstract.Symfony\Component\Validator\Constraints\AbstractComparisonValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\AllValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\AtLeastOneOfValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\BicValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\BlankValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CallbackValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CardSchemeValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CharsetValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\ChoiceValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CidrValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CollectionValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CompoundValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CountValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CountryValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CssColorValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\CurrencyValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\DateTimeValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\DateValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\DivisibleByValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\EmailValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\EqualToValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\ExpressionSyntaxValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\ExpressionValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\FileValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\GreaterThanOrEqualValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\GreaterThanValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\HostnameValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\IbanValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\IdenticalToValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\ImageValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\IpValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\IsFalseValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\IsNullValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\IsTrueValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\IsbnValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\IsinValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\IssnValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\JsonValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\LanguageValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\LengthValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\LessThanOrEqualValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\LessThanValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\LocaleValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\LuhnValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\MacAddressValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\NoSuspiciousCharactersValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\NotBlankValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\NotCompromisedPasswordValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\NotEqualToValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\NotIdenticalToValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\NotNullValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\PasswordStrengthValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\RangeValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\RegexValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\SequentiallyValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\TimeValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\TimezoneValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\TypeValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\UlidValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\UniqueValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\UrlValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\UuidValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\ValidValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\WeekValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\WhenValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\WordCountValidator"; reason: abstract.
Removed service "Symfony\Component\Validator\Constraints\YamlValidator"; reason: abstract.
Removed service "notifier.transport_factory.abstract"; reason: abstract.
Removed service "monolog.logger_prototype"; reason: abstract.
Removed service "monolog.activation_strategy.not_found"; reason: abstract.
Removed service "monolog.handler.fingers_crossed.error_level_activation_strategy"; reason: abstract.
Removed service "doctrine.dbal.connection"; reason: abstract.
Removed service "doctrine.dbal.connection.event_manager"; reason: abstract.
Removed service "doctrine.dbal.connection.configuration"; reason: abstract.
Removed service "doctrine.dbal.schema_asset_filter_manager"; reason: abstract.
Removed service "doctrine.dbal.logging_middleware"; reason: abstract.
Removed service "doctrine.dbal.debug_middleware"; reason: abstract.
Removed service "doctrine.dbal.idle_connection_middleware"; reason: abstract.
Removed service "doctrine.orm.configuration"; reason: abstract.
Removed service "doctrine.orm.entity_manager.abstract"; reason: abstract.
Removed service "doctrine.orm.manager_configurator.abstract"; reason: abstract.
Removed service "doctrine.orm.security.user.provider"; reason: abstract.
Removed service "security.firewall.context"; reason: abstract.
Removed service "security.firewall.lazy_context"; reason: abstract.
Removed service "security.firewall.config"; reason: abstract.
Removed service "security.user.provider.missing"; reason: abstract.
Removed service "security.user.provider.in_memory"; reason: abstract.
Removed service "security.user.provider.ldap"; reason: abstract.
Removed service "security.user.provider.chain"; reason: abstract.
Removed service "security.logout_listener"; reason: abstract.
Removed service "security.logout.listener.session"; reason: abstract.
Removed service "security.logout.listener.clear_site_data"; reason: abstract.
Removed service "security.logout.listener.cookie_clearing"; reason: abstract.
Removed service "security.logout.listener.default"; reason: abstract.
Removed service "security.authentication.listener.abstract"; reason: abstract.
Removed service "security.authentication.custom_success_handler"; reason: abstract.
Removed service "security.authentication.success_handler"; reason: abstract.
Removed service "security.authentication.custom_failure_handler"; reason: abstract.
Removed service "security.authentication.failure_handler"; reason: abstract.
Removed service "security.exception_listener"; reason: abstract.
Removed service "security.authentication.switchuser_listener"; reason: abstract.
Removed service "security.authenticator.manager"; reason: abstract.
Removed service "security.firewall.authenticator"; reason: abstract.
Removed service "security.listener.user_provider.abstract"; reason: abstract.
Removed service "security.listener.user_checker"; reason: abstract.
Removed service "security.listener.session"; reason: abstract.
Removed service "security.listener.login_throttling"; reason: abstract.
Removed service "security.authenticator.http_basic"; reason: abstract.
Removed service "security.authenticator.form_login"; reason: abstract.
Removed service "security.authenticator.json_login"; reason: abstract.
Removed service "security.authenticator.x509"; reason: abstract.
Removed service "security.authenticator.remote_user"; reason: abstract.
Removed service "security.authenticator.access_token"; reason: abstract.
Removed service "security.authenticator.access_token.chain_extractor"; reason: abstract.
Removed service "security.access_token_handler.oidc_user_info.http_client"; reason: abstract.
Removed service "security.access_token_handler.oidc_user_info"; reason: abstract.
Removed service "security.access_token_handler.oidc"; reason: abstract.
Removed service "security.access_token_handler.oidc_discovery.http_client"; reason: abstract.
Removed service "security.access_token_handler.oidc.jwk"; reason: abstract.
Removed service "security.access_token_handler.oidc.jwkset"; reason: abstract.
Removed service "security.access_token_handler.oidc.signature"; reason: abstract.
Removed service "security.access_token_handler.oidc.encryption"; reason: abstract.
Removed service "security.access_token_handler.oauth2"; reason: abstract.
Removed service "maker.auto_command.abstract"; reason: abstract.
Removed service "lexik_jwt_authentication.key_loader.abstract"; reason: abstract.
Removed service "lexik_jwt_authentication.security.jwt_authenticator"; reason: abstract.
Removed service "ux.autocomplete.wrapped_entity_type_autocompleter"; reason: abstract.
Removed service "Koredge\CoreBundle\Command\UpdateCommand"; reason: abstract.
Removed service "Koredge\CoreBundle\Controller"; reason: abstract.
Removed service "Koredge\CoreBundle\DQL\Expr"; reason: abstract.
Removed service "Koredge\CoreBundle\Exception"; reason: abstract.
Removed service "Koredge\CoreBundle\Orm"; reason: abstract.
Removed service ".abstract.Koredge\CoreBundle\AbstractBundle"; reason: abstract.
Removed service "Koredge\CoreBundle\Doctrine\QueryBuilder"; reason: abstract.
Removed service "Koredge\CoreBundle\Repository\EntityRepository"; reason: abstract.
Removed service "Koredge\CoreBundle\Repository\ListingAdapter"; reason: abstract.
Removed service ".abstract.Koredge\CoreBundle\Repository\UidProviderInterface"; reason: abstract.
Removed service ".abstract.Koredge\CoreBundle\Repository\UidRepository"; reason: abstract.
Removed service "Koredge\CoreBundle\Service\Api\Analysis"; reason: abstract.
Removed service "Koredge\CoreBundle\Service\Api\LoadOpenApiEvent"; reason: abstract.
Removed service ".abstract.Koredge\CoreBundle\Service\Encryption\EncryptionInterface"; reason: abstract.
Removed service "Koredge\NetworkBundle\Controller"; reason: abstract.
Removed service "Koredge\NetworkBundle\Entity"; reason: abstract.
Removed service ".abstract.Koredge\NetworkBundle\Api\Payload\Filters"; reason: abstract.
Removed service ".abstract.Koredge\NetworkBundle\Api\Payload\OrderBy"; reason: abstract.
Removed service ".abstract.Koredge\NetworkBundle\Api\Payload\Payload"; reason: abstract.
Removed service "gesdinet.jwtrefreshtoken.security.refresh_token_authenticator"; reason: abstract.
Removed service "ux_map.renderer_factory.abstract"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.Koredge\CoreBundle\Api\Serializer\UidNormalizer"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Api\Serializer\UidNormalizer"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\Filterable.0.Koredge\CoreBundle\Attribute\Filterable"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\Filterable"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\Importable.0.Koredge\CoreBundle\Attribute\Importable"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\Importable"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\Indexable.0.Koredge\CoreBundle\Attribute\Indexable"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\Indexable"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\IsGrantedAPI.0.Koredge\CoreBundle\Attribute\IsGrantedAPI"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\IsGrantedAPI"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\Library.0.Koredge\CoreBundle\Attribute\Library"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\Library"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\Listable.0.Koredge\CoreBundle\Attribute\Listable"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\Listable"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\Lockable.0.Koredge\CoreBundle\Attribute\Lockable"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\Lockable"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\Permission.0.Koredge\CoreBundle\Attribute\Permission"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\Permission"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\SettingsAPI.0.Koredge\CoreBundle\Attribute\SettingsAPI"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\SettingsAPI"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Attribute\Sharable.0.Koredge\CoreBundle\Attribute\Sharable"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Attribute\Sharable"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand.0.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\BundleTranslationExtractorCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand.0.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\CreateHistoryPartitionCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ElasticaCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\ElasticaCommand.0.Koredge\CoreBundle\Command\ElasticaCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\ElasticaCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ExtractAccessesCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\ExtractAccessesCommand.0.Koredge\CoreBundle\Command\ExtractAccessesCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\ExtractAccessesCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand.0.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\ExtractNotificationTopicsCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\InstallCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\InstallCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\NotificationsCleaningCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\NotificationsCleaningCommand.0.Koredge\CoreBundle\Command\NotificationsCleaningCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\NotificationsCleaningCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\PermissionCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\PermissionCommand.0.Koredge\CoreBundle\Command\PermissionCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\PermissionCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\PopulateSettingsAPICommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\PopulateSettingsAPICommand.0.Koredge\CoreBundle\Command\PopulateSettingsAPICommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\PopulateSettingsAPICommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand.0.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\ResetPasswordRemoveExpiredCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\RolePermissionBackupCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\RolePermissionBackupCommand.0.Koredge\CoreBundle\Command\RolePermissionBackupCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\RolePermissionBackupCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\RolePermissionRestoreCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\RolePermissionRestoreCommand.0.Koredge\CoreBundle\Command\RolePermissionRestoreCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\RolePermissionRestoreCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\UserAssociationsBackupCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\UserAssociationsBackupCommand.0.Koredge\CoreBundle\Command\UserAssociationsBackupCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\UserAssociationsBackupCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand.0.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\UserAssociationsRestoreCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\FloatingLabelSelect.0.Koredge\CoreBundle\Components\FloatingLabelSelect"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\FloatingLabelSelect"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\Listing\Action.0.Koredge\CoreBundle\Components\Listing\Action"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\Listing\Action"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\Listing\Actions.0.Koredge\CoreBundle\Components\Listing\Actions"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\Listing\Actions"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\Listing\Listing.0.Koredge\CoreBundle\Components\Listing\Listing"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\Listing\Listing"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\Listing\Pagination.0.Koredge\CoreBundle\Components\Listing\Pagination"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\Listing\Pagination"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\Listing\Section.0.Koredge\CoreBundle\Components\Listing\Section"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\Listing\Section"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\Listing\Td.0.Koredge\CoreBundle\Components\Listing\Td"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\Listing\Td"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\Listing\TdAction.0.Koredge\CoreBundle\Components\Listing\TdAction"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\Listing\TdAction"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\Listing\Th.0.Koredge\CoreBundle\Components\Listing\Th"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\Listing\Th"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Components\SelectorComponent"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Components\SelectorComponent"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\SelectorComponent.0.Koredge\CoreBundle\Components\SelectorComponent"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\SelectorComponent"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Components\TranslationsComponent"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Components\TranslationsComponent"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Components\TranslationsComponent.0.Koredge\CoreBundle\Components\TranslationsComponent"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Components\TranslationsComponent"; reason: abstract.
Removed service ".instanceof.Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface.0.Koredge\CoreBundle\CoreBundle"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\CoreBundle"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\EventListener\Api\JWTCreatedListener.0.Koredge\CoreBundle\EventListener\Api\JWTCreatedListener"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\EventListener\Api\JWTCreatedListener"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\EventListener\Entity\LockableListener.0.Koredge\CoreBundle\EventListener\Entity\LockableListener"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\EventListener\Entity\LockableListener"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\EventListener\Entity\UidListener.0.Koredge\CoreBundle\EventListener\Entity\UidListener"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\EventListener\Entity\UidListener"; reason: abstract.
Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.Koredge\CoreBundle\EventListener\HttpMetricsListener"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\EventListener\HttpMetricsListener"; reason: abstract.
Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.Koredge\CoreBundle\EventListener\Localization\LocaleListener"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\EventListener\Localization\LocaleListener"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\API\ApiFormType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\API\ApiFormType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ChangePasswordFormType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\ChangePasswordFormType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ChannelListType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\ChannelListType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ChannelType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\ChannelType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\CoreClosableChoiceType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\CoreClosableChoiceType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\CoreTranslationsType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\CoreTranslationsType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\CoreUserType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\CoreUserType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\Demo\DemoType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Demo\DemoType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\DemoFormType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\DemoFormType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\DemoListingType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\DemoListingType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\ButtonTypeExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Extension\ButtonTypeExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\CheckboxTypeExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Extension\CheckboxTypeExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\CollectionTypeExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Extension\CollectionTypeExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\DateTypeExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Extension\DateTypeExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\DropzoneTypeExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Extension\DropzoneTypeExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\FormTypeExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Extension\FormTypeExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\NumberTypeExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Extension\NumberTypeExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\SelectTypeExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Extension\SelectTypeExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.Koredge\CoreBundle\Form\Extension\SubmitTypeExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\Extension\SubmitTypeExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ExternalLinkType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\ExternalLinkType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\FilterFieldsType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\FilterFieldsType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\FilterViewType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\FilterViewType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\FiltersType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\FiltersType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\HistoryListType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\HistoryListType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\LicenseSignatureType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\LicenseSignatureType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\LicenseType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\LicenseType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\LogSearchType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\LogSearchType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\OfficeType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\OfficeType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\ResetPasswordRequestFormType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\ResetPasswordRequestFormType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\RoleBehaviorType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\RoleBehaviorType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\RoleFilterType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\RoleFilterType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\RoleType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\RoleType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\CoreBundle\Form\UserSettingsType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Form\UserSettingsType"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\API\ApiUserRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\API\ApiUserRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\AccessRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\AccessRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ChannelRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\ChannelRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\CountryRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\CountryRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ExternalLinkRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\ExternalLinkRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\FileRemovalRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\FileRemovalRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\GroupPermissionRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\GroupPermissionRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\HistoryLogRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\HistoryLogRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\InternalLinkRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\InternalLinkRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\LanguageRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\LanguageRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\LicenseRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\LicenseRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ListingViewRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\ListingViewRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\MunicipalityRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\MunicipalityRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\NotificationRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\NotificationRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\NotificationTopicRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\NotificationTopicRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\OfficeRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\OfficeRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\PermissionModelFilterRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\PermissionModelFilterRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\PermissionModelParameterRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\PermissionModelParameterRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\PermissionRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\PermissionRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\ResetPasswordRequestRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\ResetPasswordRequestRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\RoleRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\RoleRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\SettingRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\SettingRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0..abstract.Koredge\CoreBundle\Repository\UidRepository"; reason: abstract.
Removed service ".abstract.instanceof..abstract.Koredge\CoreBundle\Repository\UidRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\CoreBundle\Repository\UserRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Repository\UserRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.Koredge\CoreBundle\Security\Voter\JwtRoleVoter"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Security\Voter\JwtRoleVoter"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.Koredge\CoreBundle\Serializer\DatetimetzNormalizer"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Serializer\DatetimetzNormalizer"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\DenormalizerInterface.0.Koredge\CoreBundle\Serializer\EnumDenormalizer"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Serializer\EnumDenormalizer"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.Koredge\CoreBundle\Serializer\EnumNormalizer"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Serializer\EnumNormalizer"; reason: abstract.
Removed service ".instanceof.UnitEnum.0.Koredge\CoreBundle\Service\History\HistoryActionType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Service\History\HistoryActionType"; reason: abstract.
Removed service ".instanceof.UnitEnum.0.Koredge\CoreBundle\Service\History\HistoryOrigin"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Service\History\HistoryOrigin"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Breadcrumb"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Twig\Breadcrumb"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Core"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Twig\Core"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\DashboardExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Twig\DashboardExtension"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Form"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Twig\Form"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\FormExtension"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Twig\FormExtension"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Listing"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Twig\Listing"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Menu"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Twig\Menu"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Notification"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Twig\Notification"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Koredge\CoreBundle\Twig\Utils\Utils"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Twig\Utils\Utils"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Validator\Constraint.0.Koredge\CoreBundle\Validator\Core\File"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Validator\Core\File"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Validator\Constraint.0.Koredge\CoreBundle\Validator\Core\FileUploadConstraint"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Validator\Core\FileUploadConstraint"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.Koredge\CoreBundle\Validator\Core\FileUploadConstraintValidator"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Validator\Core\FileUploadConstraintValidator"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.Koredge\CoreBundle\Validator\Core\FileValidator"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Validator\Core\FileValidator"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\AccessApiController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\AccessApiController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\API\AccessApiController.0.Koredge\CoreBundle\Controller\API\AccessApiController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\API\AccessApiController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\ApiController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\ApiController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\API\ApiController.0.Koredge\CoreBundle\Controller\API\ApiController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\API\ApiController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\HistoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\HistoryController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\API\HistoryController.0.Koredge\CoreBundle\Controller\API\HistoryController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\API\HistoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\API\PaymentMethodController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\API\PaymentMethodController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\API\PaymentMethodController.0.Koredge\CoreBundle\Controller\API\PaymentMethodController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\API\PaymentMethodController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\LicenseController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\LicenseController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\Access\LicenseController.0.Koredge\CoreBundle\Controller\Access\LicenseController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\Access\LicenseController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\OfficeController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\OfficeController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\Access\OfficeController.0.Koredge\CoreBundle\Controller\Access\OfficeController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\Access\OfficeController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\RoleController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\RoleController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\Access\RoleController.0.Koredge\CoreBundle\Controller\Access\RoleController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\Access\RoleController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Access\UserController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Access\UserController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\Access\UserController.0.Koredge\CoreBundle\Controller\Access\UserController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\Access\UserController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\DashboardController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\DashboardController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\DashboardController.0.Koredge\CoreBundle\Controller\DashboardController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\DashboardController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\DemoController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\DemoController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\DemoController.0.Koredge\CoreBundle\Controller\DemoController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\DemoController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\DocumentationController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\DocumentationController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\DocumentationController.0.Koredge\CoreBundle\Controller\DocumentationController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\DocumentationController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\HistoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\HistoryController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\HistoryController.0.Koredge\CoreBundle\Controller\HistoryController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\HistoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\InterfaceController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\InterfaceController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\InterfaceController.0.Koredge\CoreBundle\Controller\InterfaceController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\InterfaceController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\Library\ChannelController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\Library\ChannelController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\Library\ChannelController.0.Koredge\CoreBundle\Controller\Library\ChannelController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\Library\ChannelController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\LibraryController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\LibraryController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\LibraryController.0.Koredge\CoreBundle\Controller\LibraryController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\LibraryController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\LogController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\LogController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\LogController.0.Koredge\CoreBundle\Controller\LogController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\LogController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\LoggerController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\LoggerController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\LoggerController.0.Koredge\CoreBundle\Controller\LoggerController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\LoggerController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\MunicipalityController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\MunicipalityController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\MunicipalityController.0.Koredge\CoreBundle\Controller\MunicipalityController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\MunicipalityController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\OAuthController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\OAuthController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\OAuthController.0.Koredge\CoreBundle\Controller\OAuthController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\OAuthController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\ProfileController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\ProfileController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\ProfileController.0.Koredge\CoreBundle\Controller\ProfileController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\ProfileController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\ResetPasswordController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\ResetPasswordController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\ResetPasswordController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\SecurityController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\SecurityController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\SecurityController.0.Koredge\CoreBundle\Controller\SecurityController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\SecurityController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\CoreBundle\Controller\TranslationController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\CoreBundle\Controller\TranslationController"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Controller\TranslationController.0.Koredge\CoreBundle\Controller\TranslationController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Controller\TranslationController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.core.locale_listener"; reason: abstract.
Removed service ".abstract.instanceof.core.locale_listener"; reason: abstract.
Removed service ".instanceof.Symfony\Component\PropertyInfo\PropertyListExtractorInterface.0.property_info_extractor"; reason: abstract.
Removed service ".instanceof.Symfony\Component\PropertyInfo\PropertyTypeExtractorInterface.0.property_info_extractor"; reason: abstract.
Removed service ".instanceof.Symfony\Component\PropertyInfo\Extractor\ConstructorArgumentTypeExtractorInterface.0.property_info_extractor"; reason: abstract.
Removed service ".instanceof.Symfony\Component\PropertyInfo\PropertyAccessExtractorInterface.0.property_info_extractor"; reason: abstract.
Removed service ".instanceof.Symfony\Component\PropertyInfo\PropertyInitializableExtractorInterface.0.property_info_extractor"; reason: abstract.
Removed service ".abstract.instanceof.property_info_extractor"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.datetime_normalizer"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\DenormalizerInterface.0.datetime_normalizer"; reason: abstract.
Removed service ".abstract.instanceof.datetime_normalizer"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.object_normalizer"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\DenormalizerInterface.0.object_normalizer"; reason: abstract.
Removed service ".abstract.instanceof.object_normalizer"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\CoreBundle\Command\CodeQualityCommand"; reason: abstract.
Removed service ".instanceof.Koredge\CoreBundle\Command\CodeQualityCommand.0.Koredge\CoreBundle\Command\CodeQualityCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\Command\CodeQualityCommand"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.Koredge\CoreBundle\DataFixtures\CoreFixtures"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\DataFixtures\CoreFixtures"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.Koredge\CoreBundle\DataFixtures\CountryFixtures"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\DataFixtures\CountryFixtures"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.Koredge\CoreBundle\DataFixtures\MunicipalityFixtures"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\CoreBundle\DataFixtures\MunicipalityFixtures"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\AreaController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\AreaController"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Api\Controller\AreaController.0.Koredge\NetworkBundle\Api\Controller\AreaController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Api\Controller\AreaController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\DirectionController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\DirectionController"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Api\Controller\DirectionController.0.Koredge\NetworkBundle\Api\Controller\DirectionController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Api\Controller\DirectionController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\LineController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\LineController"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Api\Controller\LineController.0.Koredge\NetworkBundle\Api\Controller\LineController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Api\Controller\LineController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\PassageController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\PassageController"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Api\Controller\PassageController.0.Koredge\NetworkBundle\Api\Controller\PassageController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Api\Controller\PassageController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Api\Controller\StopController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Api\Controller\StopController"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Api\Controller\StopController.0.Koredge\NetworkBundle\Api\Controller\StopController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Api\Controller\StopController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.Koredge\NetworkBundle\Command\ImportGtfsCommand"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Command\ImportGtfsCommand.0.Koredge\NetworkBundle\Command\ImportGtfsCommand"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Command\ImportGtfsCommand"; reason: abstract.
Removed service ".instanceof.UnitEnum.0.Koredge\NetworkBundle\Enum\GtfsImportStep"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Enum\GtfsImportStep"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\EventListener\SetActiveListener.0.Koredge\NetworkBundle\EventListener\SetActiveListener"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\EventListener\SetActiveListener"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\AreaListType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\AreaListType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\AreaType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\AreaType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\DirectionListType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\DirectionListType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\DirectionType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\DirectionType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\LineListType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\LineListType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\LineType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\LineType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SetListType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\SetListType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SetType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\SetType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\StopPointListType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\StopPointListType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\StopPointType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\StopPointType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SubSetListType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\SubSetListType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.Koredge\NetworkBundle\Form\SubSetType"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Form\SubSetType"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\AreaRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\AreaRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\Disruption\DisruptionItemRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\Disruption\DisruptionItemRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\Disruption\DisruptionReasonRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\Disruption\DisruptionReasonRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\Disruption\DisruptionSeverityRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\Disruption\DisruptionSeverityRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\AgencyRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\AgencyRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\AttributionRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\AttributionRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\CalendarDateRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\CalendarDateRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\CalendarRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\CalendarRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareAttributeRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareAttributeRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareLegRuleRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareLegRuleRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareMediaRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareMediaRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareProductRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareProductRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareRuleRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareRuleRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FareTransferRuleRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FareTransferRuleRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FeedInfoRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FeedInfoRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\FrequencyRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\FrequencyRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\LevelRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\LevelRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\PathwayRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\PathwayRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\RouteRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\RouteRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\ShapeRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\ShapeRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\ShapeTripRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\ShapeTripRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\StopAreaRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\StopAreaRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\StopTimeRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\StopTimeRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TimeframeRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\TimeframeRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TransferRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\TransferRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TranslationRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\TranslationRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\GTFS\TripRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\GTFS\TripRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\DirectionRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\KGTFS\DirectionRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\LineRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\KGTFS\LineRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\NetworkItemRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\KGTFS\NetworkItemRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\KGTFS\SubSetRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\KGTFS\SubSetRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\NetworkRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\NetworkRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\SetRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\SetRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.Koredge\NetworkBundle\Repository\StopPointRepository"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Repository\StopPointRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\AreaController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\AreaController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Controller\AreaController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\Dashboard\DashboardController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\Dashboard\DashboardController"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Controller\Dashboard\DashboardController.0.Koredge\NetworkBundle\Controller\Dashboard\DashboardController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Controller\Dashboard\DashboardController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\DirectionController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\DirectionController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Controller\DirectionController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\LineController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\LineController"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Controller\LineController.0.Koredge\NetworkBundle\Controller\LineController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Controller\LineController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\NetworkController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\NetworkController"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Controller\NetworkController.0.Koredge\NetworkBundle\Controller\NetworkController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Controller\NetworkController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\StopPointController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\StopPointController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Controller\StopPointController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.Koredge\NetworkBundle\Controller\SubSetController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.Koredge\NetworkBundle\Controller\SubSetController"; reason: abstract.
Removed service ".instanceof.Koredge\NetworkBundle\Controller\SubSetController.0.Koredge\NetworkBundle\Controller\SubSetController"; reason: abstract.
Removed service ".abstract.instanceof.Koredge\NetworkBundle\Controller\SubSetController"; reason: abstract.
243
Removed service "http_cache"; reason: unused.
Removed service "http_cache.store"; reason: unused.
Removed service "reverse_container"; reason: unused.
Removed service "process.messenger.process_message_handler"; reason: unused.
Removed service "console.messenger.application"; reason: unused.
Removed service "console.messenger.execute_command_handler"; reason: unused.
Removed service "assets.empty_package"; reason: unused.
Removed service "psr18.http_client"; reason: unused.
Removed service "http_client.uri_template_expander.guzzle"; reason: unused.
Removed service "http_client.uri_template_expander.rize"; reason: unused.
Removed service "http_client.messenger.ping_webhook_handler"; reason: unused.
Removed service "mailer.messenger.message_handler"; reason: unused.
Removed service "translator.logging"; reason: unused.
Removed service "serializer.mapping.cache.symfony"; reason: unused.
Removed service "serializer.name_converter.snake_case_to_camel_case"; reason: unused.
Removed service "type_info.type_context_factory"; reason: unused.
Removed service "type_info.resolver"; reason: unused.
Removed service "type_info.resolver.reflection_type"; reason: unused.
Removed service "type_info.resolver.reflection_parameter"; reason: unused.
Removed service "type_info.resolver.reflection_property"; reason: unused.
Removed service "type_info.resolver.reflection_return"; reason: unused.
Removed service "type_info.resolver.string"; reason: unused.
Removed service "type_info.resolver.reflection_parameter.phpdoc_aware"; reason: unused.
Removed service "type_info.resolver.reflection_property.phpdoc_aware"; reason: unused.
Removed service "type_info.resolver.reflection_return.phpdoc_aware"; reason: unused.
Removed service "lock.strategy.majority"; reason: unused.
Removed service "lock.default.factory"; reason: unused.
Removed service "name_based_uuid.factory"; reason: unused.
Removed service "random_based_uuid.factory"; reason: unused.
Removed service "time_based_uuid.factory"; reason: unused.
Removed service ".cache_connection.MfCypIA"; reason: unused.
Removed service ".cache_connection.H8vabc8"; reason: unused.
Removed service ".cache_connection.8kvDmRs"; reason: unused.
Removed service "session.storage.factory.php_bridge"; reason: unused.
Removed service "session.storage.factory.mock_file"; reason: unused.
Removed service "session.handler.native_file"; reason: unused.
Removed service "session.abstract_handler"; reason: unused.
Removed service "session.marshaller"; reason: unused.
Removed service "validator.mapping.cache.adapter"; reason: unused.
Removed service "notifier"; reason: unused.
Removed service "notifier.channel_policy"; reason: unused.
Removed service "notifier.flash_message_importance_mapper"; reason: unused.
Removed service "notifier.channel.browser"; reason: unused.
Removed service "notifier.channel.chat"; reason: unused.
Removed service "notifier.channel.sms"; reason: unused.
Removed service "notifier.channel.email"; reason: unused.
Removed service "notifier.channel.push"; reason: unused.
Removed service "notifier.channel.desktop"; reason: unused.
Removed service "notifier.monolog_handler"; reason: unused.
Removed service "notifier.failed_message_listener"; reason: unused.
Removed service "chatter.transports"; reason: unused.
Removed service "chatter.transport_factory"; reason: unused.
Removed service "chatter.messenger.chat_handler"; reason: unused.
Removed service "texter.transports"; reason: unused.
Removed service "texter.transport_factory"; reason: unused.
Removed service "texter.messenger.sms_handler"; reason: unused.
Removed service "texter.messenger.push_handler"; reason: unused.
Removed service "texter.messenger.desktop_handler"; reason: unused.
Removed service "notifier.transport_factory.null"; reason: unused.
Removed service "notifier.admin_recipient.0"; reason: unused.
Removed service "twig.loader.chain"; reason: unused.
Removed service "twig.extension.htmlsanitizer"; reason: unused.
Removed service "twig.extension.debug"; reason: unused.
Removed service "monolog.formatter.chrome_php"; reason: unused.
Removed service "monolog.formatter.gelf_message"; reason: unused.
Removed service "monolog.formatter.html"; reason: unused.
Removed service "monolog.formatter.json"; reason: unused.
Removed service "monolog.formatter.line"; reason: unused.
Removed service "monolog.formatter.loggly"; reason: unused.
Removed service "monolog.formatter.normalizer"; reason: unused.
Removed service "monolog.formatter.scalar"; reason: unused.
Removed service "monolog.formatter.wildfire"; reason: unused.
Removed service "monolog.formatter.logstash"; reason: unused.
Removed service "monolog.http_client"; reason: unused.
Removed service "doctrine.dbal.well_known_schema_asset_filter"; reason: unused.
Removed service ".1_ServiceLocator~2TE5usD"; reason: unused.
Removed service "doctrine.orm.container_repository_factory"; reason: unused.
Removed service "doctrine.orm.listeners.resolve_target_entity"; reason: unused.
Removed service "doctrine.orm.naming_strategy.default"; reason: unused.
Removed service "doctrine.orm.naming_strategy.underscore"; reason: unused.
Removed service "doctrine.orm.quote_strategy.ansi"; reason: unused.
Removed service "doctrine.migrations.connection_loader"; reason: unused.
Removed service "doctrine.migrations.em_loader"; reason: unused.
Removed service "doctrine.migrations.connection_registry_loader"; reason: unused.
Removed service "security.authentication.session_strategy_noop"; reason: unused.
Removed service "security.context_listener"; reason: unused.
Removed service "security.user_authenticator"; reason: unused.
Removed service "security.access_token_extractor.header"; reason: unused.
Removed service "security.access_token_extractor.query_string"; reason: unused.
Removed service "security.access_token_extractor.request_body"; reason: unused.
Removed service "security.access_token_handler.oidc.algorithm_manager_factory"; reason: unused.
Removed service "security.access_token_handler.oidc.signature.ES256"; reason: unused.
Removed service "security.access_token_handler.oidc.signature.ES384"; reason: unused.
Removed service "security.access_token_handler.oidc.signature.ES512"; reason: unused.
Removed service "security.access_token_handler.oidc.signature.RS256"; reason: unused.
Removed service "security.access_token_handler.oidc.signature.RS384"; reason: unused.
Removed service "security.access_token_handler.oidc.signature.RS512"; reason: unused.
Removed service "security.access_token_handler.oidc.signature.PS256"; reason: unused.
Removed service "security.access_token_handler.oidc.signature.PS384"; reason: unused.
Removed service "security.access_token_handler.oidc.signature.PS512"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption_algorithm_manager_factory"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption.RSAOAEP"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption.ECDHES"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption.ECDHSS"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption.A128CBCHS256"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption.A192CBCHS384"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption.A256CBCHS512"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption.A128GCM"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption.A192GCM"; reason: unused.
Removed service "security.access_token_handler.oidc.encryption.A256GCM"; reason: unused.
Removed service "security.user_checker.chain.login"; reason: unused.
Removed service "security.user_checker.chain.api_token_refresh"; reason: unused.
Removed service "security.user_checker.chain.api_doc"; reason: unused.
Removed service "security.user_checker.chain.api"; reason: unused.
Removed service "security.user_checker.chain.main"; reason: unused.
Removed service "knpu.oauth2.user_provider"; reason: unused.
Removed service "stof_doctrine_extensions.tool.actor_provider"; reason: unused.
Removed service "stof_doctrine_extensions.tool.ip_address_provider"; reason: unused.
Removed service "stof_doctrine_extensions.event_listener.locale"; reason: unused.
Removed service "webpack_encore.cache"; reason: unused.
Removed service "maker.php_compat_util"; reason: unused.
Removed service "maker.maker.make_functional_test"; reason: unused.
Removed service "maker.maker.make_subscriber"; reason: unused.
Removed service "maker.maker.make_unit_test"; reason: unused.
Removed service "lexik_jwt_authentication.payload_enrichment.random_jti_enrichment"; reason: unused.
Removed service "lexik_jwt_authentication.extractor.query_parameter_extractor"; reason: unused.
Removed service "lexik_jwt_authentication.extractor.cookie_extractor"; reason: unused.
Removed service "lexik_jwt_authentication.extractor.split_cookie_extractor"; reason: unused.
Removed service "lexik_jwt_authentication.security.jwt_user_provider"; reason: unused.
Removed service "ux.twig_component.twig.lexer"; reason: unused.
Removed service "Symfony\UX\LiveComponent\ComponentValidator"; reason: unused.
Removed service "mercure.hub.default.message_handler"; reason: unused.
Removed service "mercure.hub.default.publisher.traceable"; reason: unused.
Removed service "Symfony\Component\Mercure\Discovery"; reason: unused.
Removed service "stimulus.asset_mapper.ux_package_reader"; reason: unused.
Removed service "ux.autocomplete.entity_search_util"; reason: unused.
Removed service "ux.autocomplete.entity_metadata_factory"; reason: unused.
Removed service "symfonycasts.reset_password.fake_request_repository"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\Filterable"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\Importable"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\Indexable"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\IsGrantedAPI"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\Library"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\Listable"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\Lockable"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\Permission"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\SettingsAPI"; reason: unused.
Removed service "Koredge\CoreBundle\Attribute\Sharable"; reason: unused.
Removed service "Koredge\CoreBundle\CoreBundle"; reason: unused.
Removed service "Koredge\CoreBundle\DQL\Query\Postgresql\Cast"; reason: unused.
Removed service "Koredge\CoreBundle\DQL\Query\Postgresql\ILike"; reason: unused.
Removed service "Koredge\CoreBundle\DQL\Query\Postgresql\JsonContains"; reason: unused.
Removed service "Koredge\CoreBundle\DQL\Query\Postgresql\JsonGet"; reason: unused.
Removed service "Koredge\CoreBundle\DQL\Query\Postgresql\JsonGetText"; reason: unused.
Removed service "Koredge\CoreBundle\DQL\Query\Postgresql\UnaccentString"; reason: unused.
Removed service "Koredge\CoreBundle\EventListener\Api\ApiAccessListener"; reason: unused.
Removed service "Koredge\CoreBundle\EventListener\File\FormFileMoverListener"; reason: unused.
Removed service "Koredge\CoreBundle\EventListener\File\SecureFilesListener"; reason: unused.
Removed service "Koredge\CoreBundle\EventListener\Mercure\MercureListener"; reason: unused.
Removed service "Koredge\CoreBundle\EventListener\Monitoring\LogListener"; reason: unused.
Removed service "Koredge\CoreBundle\EventListener\Monitoring\LoggableListener"; reason: unused.
Removed service "Koredge\CoreBundle\EventListener\Security\AccessListener"; reason: unused.
Removed service "Koredge\CoreBundle\EventListener\UI\ListingListener"; reason: unused.
Removed service "Koredge\CoreBundle\Form\CapitalizeTransformer"; reason: unused.
Removed service "Koredge\CoreBundle\Repository\LogRepository"; reason: unused.
Removed service "Koredge\CoreBundle\Service\BulkDataService"; reason: unused.
Removed service "Koredge\CoreBundle\Service\Encryption\AesEncryption"; reason: unused.
Removed service "Koredge\CoreBundle\Service\Encryption\RsaEncryption"; reason: unused.
Removed service "Koredge\CoreBundle\Service\History\HistoryActionType"; reason: unused.
Removed service "Koredge\CoreBundle\Service\History\HistoryLogService"; reason: unused.
Removed service "Koredge\CoreBundle\Service\History\HistoryLogger"; reason: unused.
Removed service "Koredge\CoreBundle\Service\History\HistoryOrigin"; reason: unused.
Removed service "Koredge\CoreBundle\Service\Mercure\MercureService"; reason: unused.
Removed service "Koredge\CoreBundle\Service\Monitoring\LoggerService"; reason: unused.
Removed service "Koredge\CoreBundle\Service\Monitoring\StopwatchEventService"; reason: unused.
Removed service "Koredge\CoreBundle\Service\Sentry\ApiTracesSampler"; reason: unused.
Removed service "Koredge\CoreBundle\Service\System\ElasticaService"; reason: unused.
Removed service "Koredge\CoreBundle\Service\Utils\FtpService"; reason: unused.
Removed service "Koredge\CoreBundle\Service\Utils\IntlDateService"; reason: unused.
Removed service "Koredge\CoreBundle\Service\Utils\SftpService"; reason: unused.
Removed service "Koredge\CoreBundle\Validator\Core\File"; reason: unused.
Removed service "Koredge\CoreBundle\Validator\Core\FileUploadConstraint"; reason: unused.
Removed service "Koredge\NetworkBundle\Enum\GtfsImportStep"; reason: unused.
Removed service "Koredge\NetworkBundle\NetworkBundle"; reason: unused.
Removed service "Koredge\NetworkBundle\Service\NotificationService"; reason: unused.
Removed service "Koredge\NetworkBundle\Service\OptimizedGtfsService"; reason: unused.
Removed service "Koredge\NetworkBundle\Service\StopwatchEventService"; reason: unused.
Removed service "Koredge\NetworkBundle\Service\UtilsService"; reason: unused.
Removed service "gesdinet.jwtrefreshtoken.security.authentication.failure_handler"; reason: unused.
Removed service "gesdinet.jwtrefreshtoken.security.authentication.success_handler"; reason: unused.
Removed service ".service_locator.wM_2W2o"; reason: unused.
Removed service ".service_locator.wM_2W2o.Koredge\CoreBundle\Components\TranslationsComponent::setLiveResponder()"; reason: unused.
Removed service ".service_locator._JZ_w5l"; reason: unused.
Removed service ".service_locator._JZ_w5l.Koredge\CoreBundle\Controller\Access\LicenseController::editLicense()"; reason: unused.
Removed service ".service_locator._JZ_w5l.Koredge\CoreBundle\Controller\Access\LicenseController::editLicenseGeneral()"; reason: unused.
Removed service ".service_locator._JZ_w5l.Koredge\CoreBundle\Controller\Access\LicenseController::editLicenseSignatures()"; reason: unused.
Removed service ".service_locator._JZ_w5l.Koredge\CoreBundle\Controller\Access\LicenseController::saveLicense()"; reason: unused.
Removed service ".service_locator._JZ_w5l.Koredge\CoreBundle\Controller\Access\LicenseController::deleteLicense()"; reason: unused.
Removed service ".service_locator.MSJbm9i"; reason: unused.
Removed service ".service_locator.MSJbm9i.Koredge\CoreBundle\Controller\Access\OfficeController::editOffice()"; reason: unused.
Removed service ".service_locator.160Chiu"; reason: unused.
Removed service ".service_locator.160Chiu.Koredge\CoreBundle\Controller\Access\RoleController::editRole()"; reason: unused.
Removed service ".service_locator.160Chiu.Koredge\CoreBundle\Controller\Access\RoleController::saveRole()"; reason: unused.
Removed service ".service_locator.YrPL1gO"; reason: unused.
Removed service ".service_locator.YrPL1gO.Koredge\CoreBundle\Controller\ProfileController::editExternalLink()"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.denormalizer.unwrapping"; reason: unused.
Removed service ".debug.serializer.normalizer.pagerfanta.serializer.normalizer"; reason: unused.
Removed service ".debug.serializer.normalizer.Koredge\CoreBundle\Api\Serializer\UidNormalizer"; reason: unused.
Removed service ".debug.serializer.normalizer.Koredge\CoreBundle\Serializer\DatetimetzNormalizer"; reason: unused.
Removed service ".debug.serializer.normalizer.Koredge\CoreBundle\Serializer\EnumDenormalizer"; reason: unused.
Removed service ".debug.serializer.normalizer.Koredge\CoreBundle\Serializer\EnumNormalizer"; reason: unused.
Removed service ".debug.serializer.normalizer.datetime_normalizer"; reason: unused.
Removed service ".debug.serializer.normalizer.object_normalizer"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.problem"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.uid"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.datetime"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.constraint_violation_list"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.mime_message"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.datetimezone"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.dateinterval"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.form_error"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.backed_enum"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.number"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.data_uri"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.translatable"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.json_serializable"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.denormalizer.array"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.object"; reason: unused.
Removed service ".debug.serializer.encoder.serializer.encoder.xml"; reason: unused.
Removed service ".debug.serializer.encoder.serializer.encoder.json"; reason: unused.
Removed service ".debug.serializer.encoder.serializer.encoder.yaml"; reason: unused.
Removed service ".debug.serializer.encoder.serializer.encoder.csv"; reason: unused.
Removed service "monolog.logger.translation"; reason: unused.
Removed service "monolog.logger.lock"; reason: unused.
Removed service "monolog.handler.null_internal"; reason: unused.
Removed service ".service_locator._jWVTpn"; reason: unused.
Removed service "security.ldap_locator"; reason: unused.
Removed service ".service_locator.X_WBshW"; reason: unused.
Removed service ".service_locator.X_WBshW.Symfony\UX\LiveComponent\ComponentValidator"; reason: unused.
Removed service ".service_locator.icAHgqM"; reason: unused.
Removed service ".service_locator.zfRA4vz"; reason: unused.
Removed service ".service_locator.HlhG04S"; reason: unused.
Removed service "mercure.hub.default.publisher.traceable.inner"; reason: unused.
527
Inlined service "debug.controller_resolver" to "http_kernel".
Inlined service "debug.argument_resolver" to "http_kernel".
Inlined service ".service_locator.nqEKT7G" to "fragment.handler".
Inlined service "monolog.logger.console" to "console.error_listener".
Inlined service "cache_clearer" to "console.command.cache_clear".
Inlined service ".service_locator.YDYHnos" to "console.command.cache_pool_invalidate_tags".
Inlined service "cache.app.recorder_inner" to "cache.app".
Inlined service "cache.system.recorder_inner" to "cache.system".
Inlined service "cache.validator.recorder_inner" to "cache.validator".
Inlined service "cache.serializer.recorder_inner" to "cache.serializer".
Inlined service "cache.property_info.recorder_inner" to "cache.property_info".
Inlined service "assets._default_package" to "assets.packages".
Inlined service "assets.empty_version_strategy" to "assets._default_package".
Inlined service "assets.context" to "assets._default_package".
Inlined service "monolog.logger.http_client" to "http_client.transport".
Inlined service "http_client.uri_template.inner" to "http_client.uri_template".
Inlined service "mailer.transport_factory" to "mailer.transports".
Inlined service ".service_locator.6KVxCv0" to "translator.default".
Inlined service "translator.formatter.default" to "translator.default".
Inlined service "identity_translator" to "translator.formatter.default".
Inlined service "translation.extractor.php_ast" to "translation.extractor".
Inlined service "twig.translation.extractor" to "translation.extractor".
Inlined service "translation.dumper.php" to "translation.writer".
Inlined service "translation.dumper.xliff" to "translation.writer".
Inlined service "translation.dumper.xliff.xliff" to "translation.writer".
Inlined service "translation.dumper.po" to "translation.writer".
Inlined service "translation.dumper.mo" to "translation.writer".
Inlined service "translation.dumper.yml" to "translation.writer".
Inlined service "translation.dumper.yaml" to "translation.writer".
Inlined service "translation.dumper.qt" to "translation.writer".
Inlined service "translation.dumper.csv" to "translation.writer".
Inlined service "translation.dumper.ini" to "translation.writer".
Inlined service "translation.dumper.json" to "translation.writer".
Inlined service "translation.dumper.res" to "translation.writer".
Inlined service ".service_locator.kvOAK9B.translation.warmer" to "translation.warmer".
Inlined service "translation.provider_collection_factory" to "translation.provider_collection".
Inlined service "monolog.logger.php" to "debug.error_handler_configurator".
Inlined service "debug.controller_resolver.inner" to "debug.controller_resolver".
Inlined service "debug.argument_resolver.inner" to "debug.argument_resolver".
Inlined service "routing.loader.xml" to "routing.resolver".
Inlined service "routing.loader.yml" to "routing.resolver".
Inlined service "routing.loader.php" to "routing.resolver".
Inlined service "routing.loader.glob" to "routing.resolver".
Inlined service "routing.loader.directory" to "routing.resolver".
Inlined service "routing.loader.container" to "routing.resolver".
Inlined service "routing.loader.attribute.directory" to "routing.resolver".
Inlined service "routing.loader.attribute.file" to "routing.resolver".
Inlined service "routing.loader.psr4" to "routing.resolver".
Inlined service ".service_locator.pKCuUXf" to "routing.loader.container".
Inlined service "routing.resolver" to "routing.loader".
Inlined service ".service_locator.LiNhGEY" to "router.expression_language_provider".
Inlined service ".service_locator.mFBT25N.router.cache_warmer" to "router.cache_warmer".
Inlined service "cache.property_access" to "property_accessor".
Inlined service "secrets.decryption_key" to "secrets.vault".
Inlined service "serializer.normalizer.property" to "serializer.normalizer.mime_message".
Inlined service "serializer.mapping.chain_loader" to "serializer.mapping.class_metadata_factory".
Inlined service "session.storage.factory.native" to "session.factory".
Inlined service ".service_locator.MQ2K9ka" to "session_listener".
Inlined service "security.csrf.same_origin_token_manager.inner" to "security.csrf.same_origin_token_manager".
Inlined service "form.extension" to "form.registry".
Inlined service "form.resolved_type_factory" to "form.registry".
Inlined service ".service_locator.xHHJRhJ" to "form.extension".
Inlined service "form.choice_list_factory.default" to "form.choice_list_factory.property_access".
Inlined service "form.choice_list_factory.property_access" to "form.choice_list_factory.cached".
Inlined service "form.type_extension.form.request_handler" to "form.type_extension.form.http_foundation".
Inlined service "validator.validator_factory" to "validator.builder".
Inlined service "doctrine.orm.validator_initializer" to "validator.builder".
Inlined service "validator.property_info_loader" to "validator.builder".
Inlined service "doctrine.orm.default_entity_manager.validator_loader" to "validator.builder".
Inlined service ".service_locator.0U6Akd1" to "validator.validator_factory".
Inlined service "validator.expression_language_provider" to "validator.expression_language".
Inlined service "cache.validator_expression_language.recorder_inner" to "cache.validator_expression_language".
Inlined service "profiler.storage" to "profiler".
Inlined service ".data_collector.command" to "profiler".
Inlined service "data_collector.time" to "profiler".
Inlined service "data_collector.memory" to "profiler".
Inlined service "data_collector.validator" to "profiler".
Inlined service "data_collector.ajax" to "profiler".
Inlined service "data_collector.exception" to "profiler".
Inlined service "data_collector.logger" to "profiler".
Inlined service "data_collector.events" to "profiler".
Inlined service "data_collector.translation" to "profiler".
Inlined service "data_collector.security" to "profiler".
Inlined service "data_collector.twig" to "profiler".
Inlined service "ux.twig_component.data_collector" to "profiler".
Inlined service "data_collector.http_client" to "profiler".
Inlined service "data_collector.doctrine" to "profiler".
Inlined service "doctrine_migrations.migrations_collector" to "profiler".
Inlined service "mailer.data_collector" to "profiler".
Inlined service "notifier.data_collector" to "profiler".
Inlined service "data_collector.mercure" to "profiler".
Inlined service "data_collector.config" to "profiler".
Inlined service ".service_locator.0NioFko" to "profiler.state_checker".
Inlined service "profiler.state_checker" to "profiler.is_disabled_state_checker".
Inlined service "data_collector.form.extractor" to "data_collector.form".
Inlined service "debug.validator.inner" to "debug.validator".
Inlined service "debug.serializer.inner" to "debug.serializer".
Inlined service "twig.extension.security_csrf" to "twig".
Inlined service "twig.extension.profiler" to "twig".
Inlined service "twig.extension.trans" to "twig".
Inlined service "twig.extension.assets" to "twig".
Inlined service "twig.extension.routing" to "twig".
Inlined service "twig.extension.yaml" to "twig".
Inlined service "twig.extension.debug.stopwatch" to "twig".
Inlined service "twig.extension.expression" to "twig".
Inlined service "twig.extension.httpkernel" to "twig".
Inlined service "twig.extension.httpfoundation" to "twig".
Inlined service "twig.extension.weblink" to "twig".
Inlined service "twig.extension.serializer" to "twig".
Inlined service "twig.extension.form" to "twig".
Inlined service "twig.extension.dump" to "twig".
Inlined service "twig.extension.logout_url" to "twig".
Inlined service "twig.extension.security" to "twig".
Inlined service "twig.extension.webprofiler" to "twig".
Inlined service "twig.extension.code" to "twig".
Inlined service "doctrine.twig.doctrine_extension" to "twig".
Inlined service "twig.extension.markdown" to "twig".
Inlined service "twig.extension.intl" to "twig".
Inlined service "twig.extension.string" to "twig".
Inlined service "webpack_encore.twig_entry_files_extension" to "twig".
Inlined service "pagerfanta.twig_extension" to "twig".
Inlined service "ux.twig_component.twig.component_extension" to "twig".
Inlined service "ux.live_component.twig.component_extension" to "twig".
Inlined service "Symfony\Component\Mercure\Twig\MercureExtension" to "twig".
Inlined service "stimulus.ux_controllers_twig_extension" to "twig".
Inlined service "Koredge\CoreBundle\Twig\Core" to "twig".
Inlined service "Koredge\CoreBundle\Twig\DashboardExtension" to "twig".
Inlined service "Koredge\CoreBundle\Twig\Form" to "twig".
Inlined service "Koredge\CoreBundle\Twig\FormExtension" to "twig".
Inlined service "Koredge\CoreBundle\Twig\Menu" to "twig".
Inlined service "Koredge\CoreBundle\Twig\Notification" to "twig".
Inlined service "Koredge\CoreBundle\Twig\Utils\Utils" to "twig".
Inlined service "turbo.twig.extension" to "twig".
Inlined service ".ux_icons.twig_icon_extension" to "twig".
Inlined service "ux_map.twig_extension" to "twig".
Inlined service "twig.app_variable" to "twig".
Inlined service "twig.runtime_loader" to "twig".
Inlined service "twig.missing_extension_suggestor" to "twig".
Inlined service "twig.missing_extension_suggestor" to "twig".
Inlined service "twig.missing_extension_suggestor" to "twig".
Inlined service "pagerfanta.undefined_callable_handler" to "twig".
Inlined service "ux.twig_component.twig.environment_configurator" to "twig".
Inlined service ".service_locator.3DrAUl_.twig.template_cache_warmer" to "twig.template_cache_warmer".
Inlined service "fragment.handler" to "twig.runtime.httpkernel".
Inlined service "fragment.uri_generator" to "twig.runtime.httpkernel".
Inlined service "url_helper" to "twig.extension.httpfoundation".
Inlined service ".service_locator.6MJegeP" to "twig.runtime_loader".
Inlined service "twig.mime_body_renderer" to "twig.mailer.message_listener".
Inlined service "var_dumper.contextualized_cli_dumper" to "debug.dump_listener".
Inlined service "monolog.logger.debug" to "var_dumper.dump_server".
Inlined service "var_dumper.dump_server" to "var_dumper.command.server_dump".
Inlined service "doctrine.dbal.connection_factory.dsn_parser" to "doctrine.dbal.connection_factory".
Inlined service "doctrine.dbal.default_schema_manager_factory" to "doctrine.dbal.default_connection.configuration".
Inlined service "doctrine.dbal.default_schema_asset_filter_manager" to "doctrine.dbal.default_connection.configuration".
Inlined service "doctrine.dbal.logging_middleware.default" to "doctrine.dbal.default_connection.configuration".
Inlined service "doctrine.dbal.debug_middleware.default" to "doctrine.dbal.default_connection.configuration".
Inlined service "doctrine.dbal.idle_connection_middleware.default" to "doctrine.dbal.default_connection.configuration".
Inlined service ".service_locator.PPV5tjI" to "doctrine.dbal.default_connection.event_manager".
Inlined service "doctrine.dbal.default_connection.configuration" to "doctrine.dbal.default_connection".
Inlined service "doctrine.dbal.connection_factory" to "doctrine.dbal.default_connection".
Inlined service "ulid.factory" to "doctrine.ulid_generator".
Inlined service "uuid.factory" to "doctrine.uuid_generator".
Inlined service "doctrine.orm.entity_value_resolver.expression_language" to "doctrine.orm.entity_value_resolver".
Inlined service "cache.doctrine.orm.default.metadata" to "doctrine.orm.default_configuration".
Inlined service ".doctrine.orm.default_metadata_driver" to "doctrine.orm.default_configuration".
Inlined service "doctrine.orm.naming_strategy.underscore_number_aware" to "doctrine.orm.default_configuration".
Inlined service "doctrine.orm.quote_strategy.default" to "doctrine.orm.default_configuration".
Inlined service "doctrine.orm.typed_field_mapper.default" to "doctrine.orm.default_configuration".
Inlined service "doctrine.orm.default_entity_listener_resolver" to "doctrine.orm.default_configuration".
Inlined service "Koredge\CoreBundle\Repository\ContainerRepositoryFactory" to "doctrine.orm.default_configuration".
Inlined service "cache.doctrine.orm.default.result.recorder_inner" to "cache.doctrine.orm.default.result".
Inlined service "cache.doctrine.orm.default.query.recorder_inner" to "cache.doctrine.orm.default.query".
Inlined service "doctrine.migrations.configuration_loader" to "doctrine.migrations.dependency_factory".
Inlined service "doctrine.migrations.entity_manager_registry_loader" to "doctrine.migrations.dependency_factory".
Inlined service "doctrine.migrations.configuration" to "doctrine.migrations.configuration_loader".
Inlined service "doctrine.migrations.storage.table_storage" to "doctrine.migrations.configuration".
Inlined service "doctrine_migrations.migrations_flattener" to "doctrine_migrations.migrations_collector".
Inlined service ".service_locator.1mjVCan" to "security.token_storage".
Inlined service ".service_locator.rAuPNI6" to "security.helper".
Inlined service ".service_locator.TYbLaTK" to "security.helper".
Inlined service ".service_locator.BeTr4vf" to "security.helper".
Inlined service ".service_locator.T9hw48f" to "security.helper".
Inlined service ".service_locator.qe07GcU" to "security.helper".
Inlined service ".service_locator.T9hw48f" to "security.helper".
Inlined service "security.expression_language" to "security.access.expression_voter".
Inlined service "cache.security_expression_language.recorder_inner" to "cache.security_expression_language".
Inlined service "security.is_granted_attribute_expression_language" to "controller.is_granted_attribute_listener".
Inlined service "cache.security_is_granted_attribute_expression_language.recorder_inner" to "cache.security_is_granted_attribute_expression_language".
Inlined service "cache.security_is_csrf_token_valid_attribute_expression_language.recorder_inner" to "cache.security_is_csrf_token_valid_attribute_expression_language".
Inlined service ".security.request_matcher.v.QWPsG" to "security.access_map".
Inlined service ".security.request_matcher.YrnOxI1" to "security.access_map".
Inlined service ".security.request_matcher.vulWAHZ" to "security.access_map".
Inlined service ".security.request_matcher.JxaBYZc" to "security.access_map".
Inlined service ".security.request_matcher.dHwqgNd" to "security.access_map".
Inlined service ".security.request_matcher.oF10SVs" to "security.access_map".
Inlined service ".security.request_matcher.WmMJWQ3" to "security.access_map".
Inlined service ".security.request_matcher.S.FPR_b" to "security.access_map".
Inlined service ".security.request_matcher.iDgaL8O" to "security.access_map".
Inlined service ".security.request_matcher.PIA1nsI" to "security.access_map".
Inlined service ".security.request_matcher.0tMb.ud" to "security.access_map".
Inlined service ".security.request_matcher.CUDSgej" to "security.access_map".
Inlined service "security.impersonate_url_generator" to "twig.extension.security".
Inlined service "debug.security.access.decision_manager.inner" to "debug.security.access.decision_manager".
Inlined service ".security.request_matcher.kQIRvor" to ".security.request_matcher.gOpgIHx".
Inlined service "security.firewall.map.config.dev" to "security.firewall.map.context.dev".
Inlined service "security.authentication.success_handler.login.json_login" to "security.authenticator.json_login.login".
Inlined service "security.authentication.failure_handler.login.json_login" to "security.authenticator.json_login.login".
Inlined service "debug.security.firewall.authenticator.login.inner" to "debug.security.firewall.authenticator.login".
Inlined service "security.exception_listener.login" to "security.firewall.map.context.login".
Inlined service "security.firewall.map.config.login" to "security.firewall.map.context.login".
Inlined service "security.authentication.success_handler.api_token_refresh.refresh_jwt" to "security.authenticator.refresh_jwt.api_token_refresh".
Inlined service "security.authentication.failure_handler.api_token_refresh.refresh_jwt" to "security.authenticator.refresh_jwt.api_token_refresh".
Inlined service "debug.security.firewall.authenticator.api_token_refresh.inner" to "debug.security.firewall.authenticator.api_token_refresh".
Inlined service "security.exception_listener.api_token_refresh" to "security.firewall.map.context.api_token_refresh".
Inlined service "security.firewall.map.config.api_token_refresh" to "security.firewall.map.context.api_token_refresh".
Inlined service ".security.request_matcher.8xN5okj" to ".security.request_matcher.I9Yc5UJ".
Inlined service "debug.security.firewall.authenticator.api_doc.inner" to "debug.security.firewall.authenticator.api_doc".
Inlined service "security.exception_listener.api_doc" to "security.firewall.map.context.api_doc".
Inlined service "security.logout_listener.api_doc" to "security.firewall.map.context.api_doc".
Inlined service "security.firewall.map.config.api_doc" to "security.firewall.map.context.api_doc".
Inlined service ".security.request_matcher.5n1UlhU" to ".security.request_matcher.7hdBUZ0".
Inlined service "lexik_jwt_authentication.extractor.chain_extractor" to "security.authenticator.jwt.api".
Inlined service "debug.security.firewall.authenticator.api.inner" to "debug.security.firewall.authenticator.api".
Inlined service "security.exception_listener.api" to "security.firewall.map.context.api".
Inlined service "security.firewall.map.config.api" to "security.firewall.map.context.api".
Inlined service "debug.security.firewall.authenticator.main.inner" to "debug.security.firewall.authenticator.main".
Inlined service "security.exception_listener.main" to "security.firewall.map.context.main".
Inlined service "security.logout_listener.main" to "security.firewall.map.context.main".
Inlined service "security.firewall.map.config.main" to "security.firewall.map.context.main".
Inlined service ".security.request_matcher.WIpCngH" to ".security.request_matcher.v.QWPsG".
Inlined service ".security.request_matcher.7XMFiMz" to ".security.request_matcher.YrnOxI1".
Inlined service ".security.request_matcher.vAK792_" to ".security.request_matcher.vulWAHZ".
Inlined service ".security.request_matcher.zGgK5bN" to ".security.request_matcher.JxaBYZc".
Inlined service ".security.request_matcher.paww6s9" to ".security.request_matcher.dHwqgNd".
Inlined service ".security.request_matcher.pOhqRJH" to ".security.request_matcher.oF10SVs".
Inlined service ".security.request_matcher.L0buD07" to ".security.request_matcher.WmMJWQ3".
Inlined service ".security.request_matcher.XfRfIQs" to ".security.request_matcher.PIA1nsI".
Inlined service ".security.request_matcher.3qgJVJN" to ".security.request_matcher.0tMb.ud".
Inlined service ".security.request_matcher.SbN0Tkg" to ".security.request_matcher.CUDSgej".
Inlined service "twig.markdown.default" to "twig.runtime.markdown".
Inlined service "twig.markdown.league_common_mark_converter" to "twig.markdown.default".
Inlined service "twig.markdown.league_common_mark_converter_factory" to "twig.markdown.league_common_mark_converter".
Inlined service "doctrine.fixtures.loader" to "doctrine.fixtures_load_command".
Inlined service "doctrine.fixtures.purger.orm_purger_factory" to "doctrine.fixtures_load_command".
Inlined service "Koredge\CoreBundle\DataFixtures\CoreFixtures" to "doctrine.fixtures.loader".
Inlined service "Koredge\CoreBundle\DataFixtures\CountryFixtures" to "doctrine.fixtures.loader".
Inlined service "Koredge\CoreBundle\DataFixtures\MunicipalityFixtures" to "doctrine.fixtures.loader".
Inlined service "knpu.oauth2.provider_factory" to "knpu.oauth2.provider.keycloak".
Inlined service "knpu.oauth2.provider.keycloak" to "knpu.oauth2.client.keycloak".
Inlined service "fos_js_routing.normalizer.route_collection" to "fos_js_routing.serializer".
Inlined service "fos_js_routing.normalizer.routes_response" to "fos_js_routing.serializer".
Inlined service "fos_js_routing.denormalizer.route_collection" to "fos_js_routing.serializer".
Inlined service "fos_js_routing.encoder" to "fos_js_routing.serializer".
Inlined service ".service_locator.dSgLAvY" to "webpack_encore.entrypoint_lookup_collection".
Inlined service ".service_locator.MXLal1R" to "webpack_encore.twig_entry_files_extension".
Inlined service "cache.webpack_encore.recorder_inner" to "cache.webpack_encore".
Inlined service ".service_locator.xAeA33K" to "pagerfanta.view_factory".
Inlined service "pagerfanta.view_factory" to "pagerfanta.twig_runtime".
Inlined service "pagerfanta.route_generator_factory" to "pagerfanta.twig_runtime".
Inlined service "maker.autoloader_util" to "maker.file_manager".
Inlined service "maker.autoloader_finder" to "maker.autoloader_util".
Inlined service "maker.template_component_generator" to "maker.generator".
Inlined service "maker.event_registry" to "maker.maker.make_listener".
Inlined service "maker.user_class_builder" to "maker.maker.make_user".
Inlined service "lexik_jwt_authentication.payload_enrichment" to "lexik_jwt_authentication.jwt_manager".
Inlined service "lexik_jwt_authentication.extractor.authorization_header_extractor" to "lexik_jwt_authentication.extractor.chain_extractor".
Inlined service "ux.twig_component.component_template_finder" to "ux.twig_component.component_factory".
Inlined service ".service_locator.xR_YFDZ" to "ux.twig_component.component_factory".
Inlined service ".service_locator.ZCqtdlu" to "ux.twig_component.twig.component_runtime".
Inlined service "ux.twig_component.twig.environment_configurator.inner" to "ux.twig_component.twig.environment_configurator".
Inlined service "cache.ux.twig_component.recorder_inner" to "cache.ux.twig_component".
Inlined service ".service_locator.eB5.jjc.ux.twig_component.cache_warmer" to "ux.twig_component.cache_warmer".
Inlined service ".service_locator.QpO14rB.ux.live_component.event_subscriber" to "ux.live_component.event_subscriber".
Inlined service ".service_locator.S.xdW3J.ux.live_component.intercept_child_component_render_subscriber" to "ux.live_component.intercept_child_component_render_subscriber".
Inlined service ".service_locator.dFv6Yo5.ux.live_component.child_component_partial_renderer" to "ux.live_component.child_component_partial_renderer".
Inlined service ".service_locator.R6yf12C.ux.live_component.add_attributes_subscriber" to "ux.live_component.add_attributes_subscriber".
Inlined service "ux.live_component.query_string_props_extractor" to "ux.live_component.query_string_initializer_subscriber".
Inlined service "mercure.hub.default.traceable.inner" to "mercure.hub.default.traceable".
Inlined service "Symfony\Component\Mercure\Authorization" to "Symfony\Component\Mercure\Twig\MercureExtension".
Inlined service "nelmio_cors.options_resolver" to "nelmio_cors.cors_listener".
Inlined service "nelmio_cors.options_provider.config" to "nelmio_cors.options_resolver".
Inlined service "ux.autocomplete.doctrine_registry_wrapper" to "ux.autocomplete.results_executor".
Inlined service "ux.autocomplete.autocompleter_registry" to "ux.autocomplete.entity_autocomplete_controller".
Inlined service "ux.autocomplete.results_executor" to "ux.autocomplete.entity_autocomplete_controller".
Inlined service "symfonycasts.reset_password.random_generator" to "symfonycasts.reset_password.token_generator".
Inlined service "symfonycasts.reset_password.token_generator" to "symfonycasts.reset_password.helper".
Inlined service "mailer.mailer" to "Koredge\CoreBundle\Service\Communication\MailService".
Inlined service "Koredge\CoreBundle\Service\History\TextDiffService" to "Koredge\CoreBundle\Service\History\HistoryParserService".
Inlined service "Koredge\CoreBundle\Service\System\DoctrineService" to "Koredge\CoreBundle\Service\UI\MenuService".
Inlined service "Koredge\CoreBundle\Service\Utils\FuzzyColumnMatcher" to "Koredge\CoreBundle\Service\Utils\CsvService".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\API\AccessApiController" to "Koredge\CoreBundle\Controller\API\AccessApiController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\API\ApiController" to "Koredge\CoreBundle\Controller\API\ApiController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\API\HistoryController" to "Koredge\CoreBundle\Controller\API\HistoryController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\API\PaymentMethodController" to "Koredge\CoreBundle\Controller\API\PaymentMethodController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\Access\LicenseController" to "Koredge\CoreBundle\Controller\Access\LicenseController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\Access\OfficeController" to "Koredge\CoreBundle\Controller\Access\OfficeController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\Access\RoleController" to "Koredge\CoreBundle\Controller\Access\RoleController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\Access\UserController" to "Koredge\CoreBundle\Controller\Access\UserController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\DashboardController" to "Koredge\CoreBundle\Controller\DashboardController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\DemoController" to "Koredge\CoreBundle\Controller\DemoController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\DocumentationController" to "Koredge\CoreBundle\Controller\DocumentationController".
Inlined service "Koredge\CoreBundle\Controller\ErrorController.inner" to "Koredge\CoreBundle\Controller\ErrorController".
Inlined service "Koredge\CoreBundle\Repository\HistoryRepository" to "Koredge\CoreBundle\Controller\HistoryController".
Inlined service "Koredge\CoreBundle\Service\History\HistoryParserService" to "Koredge\CoreBundle\Controller\HistoryController".
Inlined service "Koredge\CoreBundle\Service\History\HistoryFormatterService" to "Koredge\CoreBundle\Controller\HistoryController".
Inlined service "Koredge\CoreBundle\Service\History\HistoryUserService" to "Koredge\CoreBundle\Controller\HistoryController".
Inlined service "Koredge\CoreBundle\Service\History\HistoryRequestHelper" to "Koredge\CoreBundle\Controller\HistoryController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\HistoryController" to "Koredge\CoreBundle\Controller\HistoryController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\InterfaceController" to "Koredge\CoreBundle\Controller\InterfaceController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\Library\ChannelController" to "Koredge\CoreBundle\Controller\Library\ChannelController".
Inlined service "Koredge\CoreBundle\Service\LibraryDiscoveryService" to "Koredge\CoreBundle\Controller\LibraryController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\LibraryController" to "Koredge\CoreBundle\Controller\LibraryController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\LogController" to "Koredge\CoreBundle\Controller\LogController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\LoggerController" to "Koredge\CoreBundle\Controller\LoggerController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\MunicipalityController" to "Koredge\CoreBundle\Controller\MunicipalityController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\OAuthController" to "Koredge\CoreBundle\Controller\OAuthController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\ProfileController" to "Koredge\CoreBundle\Controller\ProfileController".
Inlined service "Koredge\CoreBundle\Service\Communication\MailService" to "Koredge\CoreBundle\Controller\ResetPasswordController".
Inlined service "symfonycasts.reset_password.helper" to "Koredge\CoreBundle\Controller\ResetPasswordController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\ResetPasswordController" to "Koredge\CoreBundle\Controller\ResetPasswordController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\SecurityController" to "Koredge\CoreBundle\Controller\SecurityController".
Inlined service "Koredge\CoreBundle\Service\Localization\LanguageService" to "Koredge\CoreBundle\Controller\TranslationController".
Inlined service ".service_locator.67JNR4b.Koredge\CoreBundle\Controller\TranslationController" to "Koredge\CoreBundle\Controller\TranslationController".
Inlined service "Koredge\CoreBundle\Service\Mercure\MercureCookieGenerator" to "core.mercure_listener".
Inlined service "serializer.name_converter.camel_case_to_snake_case" to "object_normalizer".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Api\Controller\AreaController" to "Koredge\NetworkBundle\Api\Controller\AreaController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Api\Controller\DirectionController" to "Koredge\NetworkBundle\Api\Controller\DirectionController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Api\Controller\LineController" to "Koredge\NetworkBundle\Api\Controller\LineController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Api\Controller\PassageController" to "Koredge\NetworkBundle\Api\Controller\PassageController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Api\Controller\StopController" to "Koredge\NetworkBundle\Api\Controller\StopController".
Inlined service "Koredge\NetworkBundle\Api\Payload\Area\List\Filters" to "Koredge\NetworkBundle\Api\Payload\Area\List\Payload".
Inlined service "Koredge\NetworkBundle\Api\Payload\Area\List\OrderBy" to "Koredge\NetworkBundle\Api\Payload\Area\List\Payload".
Inlined service "Koredge\NetworkBundle\Api\Payload\Direction\List\Filters" to "Koredge\NetworkBundle\Api\Payload\Direction\List\Payload".
Inlined service "Koredge\NetworkBundle\Api\Payload\Direction\List\OrderBy" to "Koredge\NetworkBundle\Api\Payload\Direction\List\Payload".
Inlined service "Koredge\NetworkBundle\Api\Payload\Line\List\Filters" to "Koredge\NetworkBundle\Api\Payload\Line\List\Payload".
Inlined service "Koredge\NetworkBundle\Api\Payload\Line\List\OrderBy" to "Koredge\NetworkBundle\Api\Payload\Line\List\Payload".
Inlined service "Koredge\NetworkBundle\Api\Payload\Passage\List\Filters" to "Koredge\NetworkBundle\Api\Payload\Passage\List\Payload".
Inlined service "Koredge\NetworkBundle\Api\Payload\Passage\List\OrderBy" to "Koredge\NetworkBundle\Api\Payload\Passage\List\Payload".
Inlined service "Koredge\NetworkBundle\Api\Payload\Stop\List\Filters" to "Koredge\NetworkBundle\Api\Payload\Stop\List\Payload".
Inlined service "Koredge\NetworkBundle\Api\Payload\Stop\List\OrderBy" to "Koredge\NetworkBundle\Api\Payload\Stop\List\Payload".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Controller\AreaController" to "Koredge\NetworkBundle\Controller\AreaController".
Inlined service "Koredge\NetworkBundle\Service\DashboardService" to "Koredge\NetworkBundle\Controller\Dashboard\DashboardController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Controller\Dashboard\DashboardController" to "Koredge\NetworkBundle\Controller\Dashboard\DashboardController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Controller\DirectionController" to "Koredge\NetworkBundle\Controller\DirectionController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Controller\LineController" to "Koredge\NetworkBundle\Controller\LineController".
Inlined service "Koredge\NetworkBundle\Service\NetworkFormHandler" to "Koredge\NetworkBundle\Controller\NetworkController".
Inlined service "Koredge\NetworkBundle\Service\NetworkStatisticsService" to "Koredge\NetworkBundle\Controller\NetworkController".
Inlined service "Koredge\NetworkBundle\Service\NetworkSetValidator" to "Koredge\NetworkBundle\Controller\NetworkController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Controller\NetworkController" to "Koredge\NetworkBundle\Controller\NetworkController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Controller\StopPointController" to "Koredge\NetworkBundle\Controller\StopPointController".
Inlined service ".service_locator.PTgIexa.Koredge\NetworkBundle\Controller\SubSetController" to "Koredge\NetworkBundle\Controller\SubSetController".
Inlined service "turbo.broadcaster.action_renderer.inner" to "turbo.broadcaster.action_renderer".
Inlined service ".service_locator.nT7rZtz" to "turbo.twig.runtime".
Inlined service "turbo.broadcaster.action_renderer" to "turbo.doctrine.event_listener".
Inlined service ".ux_icons.cache.recorder_inner" to ".ux_icons.cache".
Inlined service ".ux_icons.chain_registry" to ".ux_icons.cache_icon_registry".
Inlined service ".ux_icons.cache_warmer" to ".ux_icons.command.warm_cache".
Inlined service "gesdinet.jwtrefreshtoken.request.extractor.request_body" to "gesdinet.jwtrefreshtoken.request.extractor.chain".
Inlined service "gesdinet.jwtrefreshtoken.request.extractor.request_parameter" to "gesdinet.jwtrefreshtoken.request.extractor.chain".
Inlined service "gesdinet.jwtrefreshtoken.request.extractor.request_cookie" to "gesdinet.jwtrefreshtoken.request.extractor.chain".
Inlined service "lexik_jwt_authentication.handler.authentication_failure" to "gesdinet.jwtrefreshtoken".
Inlined service "ux.translator.translations_dumper" to "ux.translator.cache_warmer.translations_cache_warmer".
Inlined service "ux.translator.message_parameters.extractor.message_parameters_extractor" to "ux.translator.translations_dumper".
Inlined service "ux.translator.message_parameters.extractor.intl_message_parameters_extractor" to "ux.translator.translations_dumper".
Inlined service "ux.translator.message_parameters.printer.typescript_message_parameters_printer" to "ux.translator.translations_dumper".
Inlined service "ux_map.renderer_factory" to "ux_map.renderers".
Inlined service "ux_map.renderers" to "ux_map.twig_runtime".
Inlined service ".ux_map.ux_icons.renderer" to "ux_map.renderer_factory.leaflet".
Inlined service "debug.security.event_dispatcher.login.inner" to "debug.security.event_dispatcher.login".
Inlined service "debug.security.event_dispatcher.api_token_refresh.inner" to "debug.security.event_dispatcher.api_token_refresh".
Inlined service "debug.security.event_dispatcher.api_doc.inner" to "debug.security.event_dispatcher.api_doc".
Inlined service "debug.security.event_dispatcher.api.inner" to "debug.security.event_dispatcher.api".
Inlined service "debug.security.event_dispatcher.main.inner" to "debug.security.event_dispatcher.main".
Inlined service "maker.maker.make_authenticator" to "maker.auto_command.make_auth".
Inlined service "maker.maker.make_command" to "maker.auto_command.make_command".
Inlined service "maker.maker.make_twig_component" to "maker.auto_command.make_twig_component".
Inlined service "maker.maker.make_controller" to "maker.auto_command.make_controller".
Inlined service "maker.maker.make_crud" to "maker.auto_command.make_crud".
Inlined service "maker.maker.make_docker_database" to "maker.auto_command.make_docker_database".
Inlined service "maker.maker.make_entity" to "maker.auto_command.make_entity".
Inlined service "maker.maker.make_fixtures" to "maker.auto_command.make_fixtures".
Inlined service "maker.maker.make_form" to "maker.auto_command.make_form".
Inlined service "maker.maker.make_listener" to "maker.auto_command.make_listener".
Inlined service "maker.maker.make_message" to "maker.auto_command.make_message".
Inlined service "maker.maker.make_messenger_middleware" to "maker.auto_command.make_messenger_middleware".
Inlined service "maker.maker.make_registration_form" to "maker.auto_command.make_registration_form".
Inlined service "maker.maker.make_reset_password" to "maker.auto_command.make_reset_password".
Inlined service "maker.maker.make_schedule" to "maker.auto_command.make_schedule".
Inlined service "maker.maker.make_serializer_encoder" to "maker.auto_command.make_serializer_encoder".
Inlined service "maker.maker.make_serializer_normalizer" to "maker.auto_command.make_serializer_normalizer".
Inlined service "maker.maker.make_twig_extension" to "maker.auto_command.make_twig_extension".
Inlined service "maker.maker.make_test" to "maker.auto_command.make_test".
Inlined service "maker.maker.make_validator" to "maker.auto_command.make_validator".
Inlined service "maker.maker.make_voter" to "maker.auto_command.make_voter".
Inlined service "maker.maker.make_user" to "maker.auto_command.make_user".
Inlined service "maker.maker.make_migration" to "maker.auto_command.make_migration".
Inlined service "maker.maker.make_stimulus_controller" to "maker.auto_command.make_stimulus_controller".
Inlined service "maker.maker.make_form_login" to "maker.auto_command.make_security_form_login".
Inlined service "maker.maker.make_custom_authenticator" to "maker.auto_command.make_security_custom".
Inlined service "maker.maker.make_webhook" to "maker.auto_command.make_webhook".
Inlined service "ux.autocomplete.make_autocomplete_field" to "maker.auto_command.make_autocomplete_field".
Inlined service ".service_locator.xSpNkXr" to ".service_locator.xSpNkXr.Koredge\CoreBundle\Controller\API\AccessApiController::availableLicenses()".
Inlined service ".service_locator.2Ah1YtP" to ".service_locator.2Ah1YtP.Koredge\CoreBundle\Controller\API\AccessApiController::login()".
Inlined service ".service_locator.A42T3Re" to ".service_locator.A42T3Re.Koredge\CoreBundle\Controller\API\AccessApiController::switchLicense()".
Inlined service ".service_locator.ELkKjwY" to ".service_locator.ELkKjwY.Koredge\CoreBundle\Controller\API\ApiController::jsonDoc()".
Inlined service ".service_locator.r7wTvGM" to ".service_locator.r7wTvGM.Koredge\CoreBundle\Controller\API\PaymentMethodController::get()".
Inlined service ".service_locator._uOi9BY" to ".service_locator._uOi9BY.Koredge\CoreBundle\Controller\Access\LicenseController::_saveLicense()".
Inlined service ".service_locator.hKcgvFD" to ".service_locator.hKcgvFD.Koredge\CoreBundle\Controller\Access\LicenseController::addLicenseSignature()".
Inlined service ".service_locator.4dJUHGq" to ".service_locator.4dJUHGq.Koredge\CoreBundle\Controller\Access\LicenseController::editLicenseSignature()".
Inlined service ".service_locator.qv7yA16" to ".service_locator.qv7yA16.Koredge\CoreBundle\Controller\Access\LicenseController::deleteLicenseSignature()".
Inlined service ".service_locator.c7HXurC" to ".service_locator.c7HXurC.Koredge\CoreBundle\Controller\Access\OfficeController::deleteOffice()".
Inlined service ".service_locator.SLTl3Ir" to ".service_locator.SLTl3Ir.Koredge\CoreBundle\Controller\Access\RoleController::deleteRole()".
Inlined service ".service_locator.iWu32xY" to ".service_locator.iWu32xY.Koredge\CoreBundle\Controller\ErrorController::__invoke()".
Inlined service ".service_locator.hRLOZq4" to ".service_locator.hRLOZq4.Koredge\CoreBundle\Controller\InterfaceController::refreshListing()".
Inlined service ".service_locator.HvOKrpC" to ".service_locator.HvOKrpC.Koredge\CoreBundle\Controller\InterfaceController::exportListing()".
Inlined service ".service_locator.rjSIaIs" to ".service_locator.rjSIaIs.Koredge\CoreBundle\Controller\InterfaceController::generateNotification()".
Inlined service ".service_locator.Q3uAW7s" to ".service_locator.Q3uAW7s.Koredge\CoreBundle\Controller\InterfaceController::switchLicense()".
Inlined service ".service_locator.i5l3yAb" to ".service_locator.i5l3yAb.Koredge\CoreBundle\Controller\OAuthController::index()".
Inlined service ".service_locator.nvC6hpw" to ".service_locator.nvC6hpw.Koredge\CoreBundle\Controller\ProfileController::deleteInternalLink()".
Inlined service ".service_locator.9so_zBR" to ".service_locator.9so_zBR.Koredge\CoreBundle\Controller\ProfileController::deleteExternalLink()".
Inlined service ".service_locator.f8pLBFr" to ".service_locator.f8pLBFr.Koredge\CoreBundle\Controller\ResetPasswordController::reset()".
Inlined service ".service_locator.RxTwYvm" to ".service_locator.RxTwYvm.Koredge\CoreBundle\Controller\SecurityController::login()".
Inlined service ".service_locator.PDxTgYz" to ".service_locator.PDxTgYz.Koredge\NetworkBundle\Api\Controller\AreaController::list()".
Inlined service ".service_locator.1ETX4qR" to ".service_locator.1ETX4qR.Koredge\NetworkBundle\Api\Controller\DirectionController::list()".
Inlined service ".service_locator.NM3WG6R" to ".service_locator.NM3WG6R.Koredge\NetworkBundle\Api\Controller\LineController::get()".
Inlined service ".service_locator.nrGnnB0" to ".service_locator.nrGnnB0.Koredge\NetworkBundle\Api\Controller\LineController::list()".
Inlined service ".service_locator.qoZiM9Q" to ".service_locator.qoZiM9Q.Koredge\NetworkBundle\Api\Controller\PassageController::list()".
Inlined service ".service_locator.KNjHFWq" to ".service_locator.KNjHFWq.Koredge\NetworkBundle\Api\Controller\StopController::list()".
Inlined service "security.user_value_resolver" to ".debug.value_resolver.security.user_value_resolver".
Inlined service "security.security_token_value_resolver" to ".debug.value_resolver.security.security_token_value_resolver".
Inlined service "doctrine.orm.entity_value_resolver" to ".debug.value_resolver.doctrine.orm.entity_value_resolver".
Inlined service "argument_resolver.backed_enum_resolver" to ".debug.value_resolver.argument_resolver.backed_enum_resolver".
Inlined service "argument_resolver.uid" to ".debug.value_resolver.argument_resolver.uid".
Inlined service "argument_resolver.datetime" to ".debug.value_resolver.argument_resolver.datetime".
Inlined service "argument_resolver.request_attribute" to ".debug.value_resolver.argument_resolver.request_attribute".
Inlined service "argument_resolver.request" to ".debug.value_resolver.argument_resolver.request".
Inlined service "argument_resolver.session" to ".debug.value_resolver.argument_resolver.session".
Inlined service "argument_resolver.service" to ".debug.value_resolver.argument_resolver.service".
Inlined service "argument_resolver.default" to ".debug.value_resolver.argument_resolver.default".
Inlined service "argument_resolver.variadic" to ".debug.value_resolver.argument_resolver.variadic".
Inlined service "argument_resolver.not_tagged_controller" to ".debug.value_resolver.argument_resolver.not_tagged_controller".
Inlined service "argument_resolver.query_parameter_value_resolver" to ".debug.value_resolver.argument_resolver.query_parameter_value_resolver".
Inlined service "http_client.uri_template" to ".debug.http_client".
Inlined service ".doctrine.orm.default_metadata_driver.inner" to ".doctrine.orm.default_metadata_driver".
Inlined service ".service_locator.W55Po6X" to ".doctrine.orm.default_metadata_driver".
Inlined service "doctrine.dbal.default_regex_schema_filter" to "doctrine.dbal.default_schema_asset_filter_manager".
Inlined service "monolog.logger.doctrine" to "doctrine.dbal.logging_middleware.default".
Inlined service "security.access.authenticated_voter" to ".debug.security.voter.security.access.authenticated_voter".
Inlined service "security.access.simple_role_voter" to ".debug.security.voter.security.access.simple_role_voter".
Inlined service "security.access.expression_voter" to ".debug.security.voter.security.access.expression_voter".
Inlined service "security.access.closure_voter" to ".debug.security.voter.security.access.closure_voter".
Inlined service "Koredge\CoreBundle\Security\Voter\JwtRoleVoter" to ".debug.security.voter.Koredge\CoreBundle\Security\Voter\JwtRoleVoter".
Inlined service "security.is_csrf_token_valid_attribute_expression_language" to "controller.is_csrf_token_valid_attribute_listener".
Inlined service ".service_locator.kvOAK9B" to ".service_locator.kvOAK9B.translation.warmer".
Inlined service ".service_locator.v7NP3pp" to ".service_locator.v7NP3pp.router.default".
Inlined service ".service_locator.mFBT25N" to ".service_locator.mFBT25N.router.cache_warmer".
Inlined service ".service_locator.3DrAUl_" to ".service_locator.3DrAUl_.twig.template_cache_warmer".
Inlined service ".service_locator.eB5.jjc" to ".service_locator.eB5.jjc.ux.twig_component.cache_warmer".
Inlined service ".service_locator.QpO14rB" to ".service_locator.QpO14rB.ux.live_component.event_subscriber".
Inlined service ".service_locator.S.xdW3J" to ".service_locator.S.xdW3J.ux.live_component.intercept_child_component_render_subscriber".
Inlined service ".service_locator.dFv6Yo5" to ".service_locator.dFv6Yo5.ux.live_component.child_component_partial_renderer".
Inlined service ".service_locator.R6yf12C" to ".service_locator.R6yf12C.ux.live_component.add_attributes_subscriber".
Inlined service "argument_metadata_factory" to "debug.argument_resolver.inner".
Inlined service ".service_locator.Nbn9MsM" to "debug.argument_resolver.inner".
Inlined service "security.csrf.token_generator" to "security.csrf.same_origin_token_manager.inner".
Inlined service "serializer.denormalizer.unwrapping" to "debug.serializer.inner".
Inlined service "pagerfanta.serializer.normalizer" to "debug.serializer.inner".
Inlined service "Koredge\CoreBundle\Api\Serializer\UidNormalizer" to "debug.serializer.inner".
Inlined service "Koredge\CoreBundle\Serializer\DatetimetzNormalizer" to "debug.serializer.inner".
Inlined service "Koredge\CoreBundle\Serializer\EnumDenormalizer" to "debug.serializer.inner".
Inlined service "Koredge\CoreBundle\Serializer\EnumNormalizer" to "debug.serializer.inner".
Inlined service "datetime_normalizer" to "debug.serializer.inner".
Inlined service "object_normalizer" to "debug.serializer.inner".
Inlined service "serializer.normalizer.problem" to "debug.serializer.inner".
Inlined service "serializer.normalizer.uid" to "debug.serializer.inner".
Inlined service "serializer.normalizer.datetime" to "debug.serializer.inner".
Inlined service "serializer.normalizer.constraint_violation_list" to "debug.serializer.inner".
Inlined service "serializer.normalizer.mime_message" to "debug.serializer.inner".
Inlined service "serializer.normalizer.datetimezone" to "debug.serializer.inner".
Inlined service "serializer.normalizer.dateinterval" to "debug.serializer.inner".
Inlined service "serializer.normalizer.form_error" to "debug.serializer.inner".
Inlined service "serializer.normalizer.backed_enum" to "debug.serializer.inner".
Inlined service "serializer.normalizer.number" to "debug.serializer.inner".
Inlined service "serializer.normalizer.data_uri" to "debug.serializer.inner".
Inlined service "serializer.normalizer.translatable" to "debug.serializer.inner".
Inlined service "serializer.normalizer.json_serializable" to "debug.serializer.inner".
Inlined service "serializer.denormalizer.array" to "debug.serializer.inner".
Inlined service "serializer.normalizer.object" to "debug.serializer.inner".
Inlined service "serializer.encoder.xml" to "debug.serializer.inner".
Inlined service "serializer.encoder.json" to "debug.serializer.inner".
Inlined service "serializer.encoder.yaml" to "debug.serializer.inner".
Inlined service "serializer.encoder.csv" to "debug.serializer.inner".
Inlined service "mercure.hub.default.jwt.provider" to "mercure.hub.default.traceable.inner".
Inlined service "error_handler.error_renderer.serializer" to "Koredge\CoreBundle\Controller\ErrorController.inner".
Inlined service ".service_locator.BQxxoh2" to "console.command_loader".
Inlined service "cache.default_marshaller" to "cache.app.recorder_inner".
Inlined service ".service_locator.v7NP3pp.router.default" to "router".
Inlined service "monolog.logger.router" to "router".
Inlined service "lexik_jwt_authentication.jws_provider.lcobucci" to "lexik_jwt_authentication.encoder".
Inlined service "debug.event_dispatcher.inner" to "event_dispatcher".
Inlined service "Koredge\CoreBundle\Service\Encryption\EncryptionService" to "console.command.public_alias.Koredge\CoreBundle\Command\InstallCommand".
Inlined service "Koredge\CoreBundle\Installer\CoreBundleInstaller" to "console.command.public_alias.Koredge\CoreBundle\Command\InstallCommand".
Inlined service "file_locator" to "routing.loader".
Inlined service "file_locator" to "routing.loader".
Inlined service "file_locator" to "routing.loader".
Inlined service "file_locator" to "routing.loader".
Inlined service "file_locator" to "routing.loader".
Inlined service "routing.loader.attribute" to "routing.loader".
Inlined service "file_locator" to "routing.loader".
Inlined service "routing.loader.attribute" to "routing.loader".
Inlined service "file_locator" to "routing.loader".
Inlined service "routing.loader.attribute" to "routing.loader".
Inlined service "file_locator" to "routing.loader".
Inlined service "monolog.logger.profiler" to "profiler".
Inlined service "monolog.logger.profiler" to "profiler".
Inlined service "serializer.mapping.class_discriminator_resolver" to "debug.serializer".
Inlined service "serializer.name_converter.metadata_aware" to "debug.serializer".
Inlined service "serializer.name_converter.metadata_aware" to "debug.serializer".
Inlined service "serializer.mapping.class_discriminator_resolver" to "debug.serializer".
Inlined service "serializer.name_converter.metadata_aware" to "debug.serializer".
Inlined service "serializer.mapping.class_discriminator_resolver" to "debug.serializer".
Inlined service "Symfony\Component\Mercure\HubRegistry" to "twig".
Inlined service "Symfony\Component\Mercure\HubRegistry" to "twig".
Inlined service "Koredge\CoreBundle\Twig\Breadcrumb" to "twig".
Inlined service "Koredge\CoreBundle\Twig\Breadcrumb" to "twig".
Inlined service "mercure.hub.default.jwt.factory" to "mercure.hub.default.traceable".
Inlined service "mercure.hub.default.jwt.factory" to "mercure.hub.default.traceable".
1
Tag "container.decorator" was defined on service(s) "security.csrf.same_origin_token_manager", "debug.validator", "debug.serializer", "debug.security.access.decision_manager", "debug.security.firewall.authenticator.login", "debug.security.firewall.authenticator.api_token_refresh", "debug.security.firewall.authenticator.api_doc", "debug.security.firewall.authenticator.api", "debug.security.firewall.authenticator.main", "mercure.hub.default.traceable", "Koredge\CoreBundle\Controller\ErrorController", "debug.security.event_dispatcher.login", "debug.security.event_dispatcher.api_token_refresh", "debug.security.event_dispatcher.api_doc", "debug.security.event_dispatcher.api", "debug.security.event_dispatcher.main", ".debug.http_client", "event_dispatcher", but was never used.