Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface" interface is deprecated, use "Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface" instead.
Since symfony/dependency-injection 5.1: The "Psr\Container\ContainerInterface" autowiring alias is deprecated. Define it explicitly in your app if you want to keep using it. It is being referenced by the "Oi\BugBundle\Controller\BugController" service.
Since symfony/dependency-injection 5.1: The "Psr\Container\ContainerInterface" autowiring alias is deprecated. Define it explicitly in your app if you want to keep using it. It is being referenced by the "Oi\BugBundle\Controller\LogController" service.
Since symfony/dependency-injection 5.1: The "Psr\Container\ContainerInterface" autowiring alias is deprecated. Define it explicitly in your app if you want to keep using it. It is being referenced by the "Oi\BugBundle\Controller\NotFoundController" service.
Since symfony/dependency-injection 5.1: The "Psr\Container\ContainerInterface" autowiring alias is deprecated. Define it explicitly in your app if you want to keep using it. It is being referenced by the "Oi\FileBundle\Controller\DefaultController" service.
Since symfony/dependency-injection 5.1: The "Psr\Container\ContainerInterface" autowiring alias is deprecated. Define it explicitly in your app if you want to keep using it. It is being referenced by the "Oi\FileBundle\Controller\MediaGalleryController" service.
Since symfony/framework-bundle 5.3: The "session" service and "SessionInterface" alias are deprecated, use "$requestStack->getSession()" instead. It is being referenced by the "oi_file.twig.extension" service.
Since symfony/dependency-injection 5.1: The "Psr\Container\ContainerInterface" autowiring alias is deprecated. Define it explicitly in your app if you want to keep using it. It is being referenced by the "Oi\AlexaBundle\Controller\AmazonAlexaController" service.
Since symfony/security-bundle 5.3: The "Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface" service is deprecated, use "Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface" instead. It is being referenced by the ".service_locator.fjCnZzE" service.
Since symfony/security-bundle 5.3: The "Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface" service is deprecated, use "Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface" instead. It is being referenced by the ".service_locator.811a4DM" service.
Since symfony/security-bundle 5.3: The "Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface" service is deprecated, use "Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface" instead. It is being referenced by the ".service_locator.7A9dySB" service.
Since symfony/security-bundle 5.3: The "Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface" service is deprecated, use "Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface" instead. It is being referenced by the ".service_locator.WuOm.qS" service.
SELECT quote_ident(table_name) AS table_name,
table_schema AS schema_name
FROM information_schema.tables
WHERE table_schema NOT LIKE 'pg\_%'
AND table_schema != 'information_schema'
AND table_name != 'geometry_columns'
AND table_name != 'spatial_ref_sys'
AND table_type != 'VIEW'
doctrine
SELECT schema_name
FROM information_schema.schemata
WHERE schema_name NOT LIKE 'pg\_%'
AND schema_name != 'information_schema'
doctrine
SHOW search_path
doctrine
SELECT quote_ident(table_name) AS table_name,
table_schema AS schema_name
FROM information_schema.tables
WHERE table_schema NOT LIKE 'pg\_%'
AND table_schema != 'information_schema'
AND table_name != 'geometry_columns'
AND table_name != 'spatial_ref_sys'
AND table_type != 'VIEW'
doctrine
SELECT CURRENT_DATABASE()
doctrine
SELECT
a.attnum,
quote_ident(a.attname) AS field,
t.typname AS type,
format_type(a.atttypid, a.atttypmod) AS complete_type,
(SELECT tc.collcollate FROM pg_catalog.pg_collation tc WHERE tc.oid = a.attcollation) AS collation,
(SELECT t1.typname FROM pg_catalog.pg_type t1 WHERE t1.oid = t.typbasetype) AS domain_type,
(SELECT format_type(t2.typbasetype, t2.typtypmod) FROM
pg_catalog.pg_type t2 WHERE t2.typtype = 'd' AND t2.oid = a.atttypid) AS domain_complete_type,
a.attnotnull AS isnotnull,
(SELECT 't'
FROM pg_index
WHERE c.oid = pg_index.indrelid
AND pg_index.indkey[0] = a.attnum
AND pg_index.indisprimary = 't'
) AS pri,
(SELECT pg_get_expr(adbin, adrelid)
FROM pg_attrdef
WHERE c.oid = pg_attrdef.adrelid
AND pg_attrdef.adnum=a.attnum
) AS default,
(SELECT pg_description.description
FROM pg_description WHERE pg_description.objoid = c.oid AND a.attnum = pg_description.objsubid
) AS comment
FROM pg_attribute a, pg_class c, pg_type t, pg_namespace n
WHERE n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast') AND c.relname = 'doctrine_migration_versions' AND n.nspname = ANY(current_schemas(false))
AND a.attnum > 0
AND a.attrelid = c.oid
AND a.atttypid = t.oid
AND n.oid = c.relnamespace
ORDER BY a.attnum
doctrine
SELECT CURRENT_DATABASE()
doctrine
SELECT quote_ident(r.conname) as conname, pg_catalog.pg_get_constraintdef(r.oid, true) as condef
FROM pg_catalog.pg_constraint r
WHERE r.conrelid =
(
SELECT c.oid
FROM pg_catalog.pg_class c, pg_catalog.pg_namespace n
WHERE n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast') AND c.relname = 'doctrine_migration_versions' AND n.nspname = ANY(current_schemas(false)) AND n.oid = c.relnamespace
)
AND r.contype = 'f'
doctrine
SELECT CURRENT_DATABASE()
doctrine
SELECT quote_ident(relname) as relname, pg_index.indisunique, pg_index.indisprimary,
pg_index.indkey, pg_index.indrelid,
pg_get_expr(indpred, indrelid) AS where
FROM pg_class, pg_index
WHERE oid IN (
SELECT indexrelid
FROM pg_index si, pg_class sc, pg_namespace sn
WHERE sn.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast') AND sc.relname = 'doctrine_migration_versions' AND sn.nspname = ANY(current_schemas(false))
AND sc.oid=si.indrelid AND sc.relnamespace = sn.oid
) AND pg_index.indexrelid = oid
doctrine
SELECT attnum, attname FROM pg_attribute WHERE attrelid=20344 AND attnum IN (1) ORDER BY attnum ASC
doctrine
SELECT obj_description('doctrine_migration_versions'::regclass) AS table_comment;
doctrine
SELECT * FROM doctrine_migration_versions
doctrine
SELECT CURRENT_DATABASE()
doctrine
deprecation
Deprecated: usort(): Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero
Changed reference of service "App\Form\CategoryType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "App\Form\OimmeiPhraseType" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "App\Handler\Alexa\BaseHandler" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "App\Handler\Alexa\LaunchHandler" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "App\Security\CustomAuthenticator" previously pointing to "router.default" to "router".
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 "services_resetter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "services_resetter" previously pointing to "debug.validator" to "validator".
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.validator_debug" previously pointing to "debug.validator" to "validator".
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.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 "mailer.transport_factory.native" 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 "session.flash_bag" previously pointing to ".session.do-not-use" to "session".
Changed reference of service "session.attribute_bag" previously pointing to ".session.do-not-use" to "session".
Changed reference of service "form.type_guesser.validator" previously pointing to "debug.validator" to "validator".
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 "debug.validator" to "validator".
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 "data_collector.events" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "data_collector.validator" previously pointing to "debug.validator" to "validator".
Changed reference of service "data_collector.translation" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "swiftmailer.mailer.abstract" previously pointing to "swiftmailer.mailer.default.transport.spool" to "swiftmailer.transport".
Changed reference of service "swiftmailer.mailer.default" previously pointing to "swiftmailer.mailer.default.transport.spool" to "swiftmailer.transport".
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 "bazinga.jstranslation.controller" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "knp_paginator" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "knp_paginator.helper.processor" previously pointing to "router.default" to "router".
Changed reference of service "knp_paginator.helper.processor" previously pointing to "translator.data_collector" to "translator".
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.listener.rememberme" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
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 "security.authentication.guard_handler" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "debug.security.firewall" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "webpack_encore.tag_renderer" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "oneup_uploader.templating.uploader_helper" previously pointing to "router.default" to "router".
Changed reference of service "oneup_uploader.error_handler.blueimp" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "knp_menu.factory_extension.routing" 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 "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 "Oi\MailerBundle\Command\SendProcessCommand" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "Oi\UserBundle\Security\AppUserAuthenticator" previously pointing to "router.default" to "router".
Changed reference of service "Oi\UserBundle\Security\AppUserAuthenticator" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
Changed reference of service "Oi\UserBundle\Security\AppUserAuthenticator" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Oi\UserBundle\Security\AppUserAuthenticator" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "Oi\UserBundle\Controller\UserController" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
Changed reference of service "oi_user.oi_user_enabling_checker" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "Oi\UtilityBundle\Service\SessionBackRouter" previously pointing to "router.default" to "router".
Changed reference of service "oi_file.upload_listener" previously pointing to "router.default" to "router".
Changed reference of service "Oi\FileBundle\Service\FileHandler" previously pointing to "router.default" to "router".
Changed reference of service "oi_file.twig.extension" previously pointing to ".session.do-not-use" to "session".
Changed reference of service "oi_file.twig.extension" previously pointing to "router.default" to "router".
Changed reference of service "app.form.type.selectize_entity" previously pointing to "router.default" to "router".
Changed reference of service "Oi\FormBundle\Service\PopoverHelpGenerator" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "symfonycasts.verify_email.helper" previously pointing to "router.default" to "router".
Changed reference of service "oi_alexa.baseHandler" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.BWyujcS" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.BWyujcS" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.BWyujcS" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.QHlUCv7" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.KTNAntG" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.CWVrmHX" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.KhhhS6o" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.fjCnZzE" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.fjCnZzE" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.fjCnZzE" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
Changed reference of service ".service_locator.hD4kJuz" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.hD4kJuz" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.811a4DM" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.811a4DM" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.811a4DM" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
Changed reference of service ".service_locator.6873LUv" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.7A9dySB" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.7A9dySB" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
Changed reference of service ".service_locator.7A9dySB" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.7A9dySB" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.hUZq_U6" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.WuOm.qS" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.WuOm.qS" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
Changed reference of service ".service_locator.WuOm.qS" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.WuOm.qS" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.EOCJic6" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.EOCJic6" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.cqzZA2M" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.wUL3tmL" 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 ".service_locator.mx0UMmY" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.wSgjnB6" previously pointing to "translator.data_collector" to "translator".
Changed reference of service ".service_locator.oCg4uHe" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.XsyfP82" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.GVyCdgr" previously pointing to ".session.do-not-use" to "session".
Changed reference of service ".service_locator.GVyCdgr" previously pointing to ".session.do-not-use" to "session".
Removed service "container.env"; reason: abstract.
Removed service "cache.adapter.system"; reason: abstract.
Removed service "cache.adapter.apcu"; reason: abstract.
Removed service "cache.adapter.doctrine"; 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 "assets.remote_json_manifest_version_strategy"; reason: abstract.
Removed service "mailer.transport_factory.abstract"; reason: abstract.
Removed service "swiftmailer.mailer.abstract"; reason: abstract.
Removed service "swiftmailer.transport.smtp.configurator.abstract"; reason: abstract.
Removed service "swiftmailer.transport.sendmail.abstract"; reason: abstract.
Removed service "swiftmailer.transport.null.abstract"; reason: abstract.
Removed service "swiftmailer.transport.buffer.abstract"; reason: abstract.
Removed service "swiftmailer.transport.authhandler.abstract"; reason: abstract.
Removed service "swiftmailer.transport.eventdispatcher.abstract"; reason: abstract.
Removed service "swiftmailer.plugin.redirecting.abstract"; reason: abstract.
Removed service "swiftmailer.plugin.antiflood.abstract"; reason: abstract.
Removed service "swiftmailer.plugin.impersonate.abstract"; reason: abstract.
Removed service "swiftmailer.plugin.messagelogger.abstract"; reason: abstract.
Removed service "swiftmailer.transport.smtp.abstract"; reason: abstract.
Removed service "swiftmailer.transport.spool.abstract"; reason: abstract.
Removed service "swiftmailer.spool.file.abstract"; reason: abstract.
Removed service "swiftmailer.spool.memory.abstract"; reason: abstract.
Removed service "doctrine.dbal.logger.profiling"; reason: abstract.
Removed service "doctrine.dbal.logger.backtrace"; 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.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 "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 "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.cookie_clearing"; reason: abstract.
Removed service "security.logout.listener.default"; reason: abstract.
Removed service "security.authentication.form_entry_point"; 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.authentication.listener.rememberme"; reason: abstract.
Removed service "security.authentication.provider.rememberme"; reason: abstract.
Removed service "security.authentication.rememberme.services.abstract"; reason: abstract.
Removed service "security.authentication.rememberme.services.persistent"; reason: abstract.
Removed service "security.authentication.rememberme.services.simplehash"; 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.authentication.provider.guard"; reason: abstract.
Removed service "security.authentication.listener.guard"; reason: abstract.
Removed service "maker.auto_command.abstract"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateFirstUserCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\CreateFirstUserCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\RequestPasswordController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\RequestPasswordController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\RequestPasswordController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\SecurityController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\SecurityController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\SecurityController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\backend\CategoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\backend\CategoryController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\backend\CategoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\backend\OimmeiPhraseController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\backend\OimmeiPhraseController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\backend\OimmeiPhraseController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CategoryType"; reason: abstract.
Removed service ".abstract.instanceof.App\Form\CategoryType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CsvImportType"; reason: abstract.
Removed service ".abstract.instanceof.App\Form\CsvImportType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\MassiveActionType"; reason: abstract.
Removed service ".abstract.instanceof.App\Form\MassiveActionType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Mdr\CategorySearchType"; reason: abstract.
Removed service ".abstract.instanceof.App\Form\Mdr\CategorySearchType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Mdr\OimmeiPhraseSearchType"; reason: abstract.
Removed service ".abstract.instanceof.App\Form\Mdr\OimmeiPhraseSearchType"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OimmeiPhraseType"; reason: abstract.
Removed service ".abstract.instanceof.App\Form\OimmeiPhraseType"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Repository\CategoryRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Repository\CategoryRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Repository\OimmeiPhraseRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Repository\OimmeiPhraseRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Repository\UserRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Repository\UserRepository"; reason: abstract.
Tag "templating.helper" was defined on service(s) "oneup_uploader.templating.uploader_helper", but was never used.
Tag "oneup_uploader.routable" was defined on service(s) "oneup_uploader.controller.files", "oneup_uploader.controller.gallery", but was never used. Did you mean "oneup_uploader.controller"?