The "report_fields_where_declared" configuration option is deprecated and will be removed in DoctrineBundle 3.0. When using ORM 3, report_fields_where_declared will always be true. (Configuration.php:701 called by ExprBuilder.php:271, https://github.com/doctrine/DoctrineBundle/pull/1962, package doctrine/doctrine-bundle)
The default value of "doctrine.orm.controller_resolver.auto_mapping" will be changed from `true` to `false`. Explicitly configure `true` to keep existing behaviour. (DoctrineExtension.php:925 called by DoctrineExtension.php:543, https://github.com/doctrine/DoctrineBundle/pull/1762, package doctrine/doctrine-bundle)
Enabling the controller resolver automapping feature has been deprecated. Symfony Mapped Route Parameters should be used as replacement. (DoctrineExtension.php:934 called by DoctrineExtension.php:543, https://github.com/doctrine/DoctrineBundle/pull/1804, package doctrine/doctrine-bundle)
Not setting "doctrine.orm.enable_native_lazy_objects" to true is deprecated. (DoctrineExtension.php:1026 called by DoctrineExtension.php:543, https://github.com/doctrine/DoctrineBundle/pull/1905, package doctrine/doctrine-bundle)
User Deprecated: Class "Doctrine\ORM\Proxy\Autoloader" is deprecated. Use native lazy objects instead. (Autoloader.php:74 called by DoctrineBundle.php:136, https://github.com/doctrine/orm/pull/12005, package doctrine/orm)
"""
CREATE TABLE IF NOT EXISTS users (\n id INT AUTO_INCREMENT PRIMARY KEY,\n username VARCHAR(180) UNIQUE NOT NULL,\n password VARCHAR(255) NOT NULL,\n role VARCHAR(50) NOT NULL DEFAULT 'user',\n is_active BOOLEAN NOT NULL DEFAULT TRUE,\n failed_login_attempts INT NOT NULL DEFAULT 0,\n last_login DATETIME NULL,\n locked_until DATETIME NULL,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n INDEX idx_username (username),\n INDEX idx_is_active (is_active),\n INDEX idx_security (failed_login_attempts, locked_until)\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS users (\n id INT AUTO_INCREMENT PRIMARY KEY,\n username VARCHAR(180) UNIQUE NOT NULL,\n password VARCHAR(255) NOT NULL,\n role VARCHAR(50) NOT NULL DEFAULT 'user',\n is_active BOOLEAN NOT NULL DEFAULT TRUE,\n failed_login_attempts INT NOT NULL DEFAULT 0,\n last_login DATETIME NULL,\n locked_until DATETIME NULL,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n INDEX idx_username (username),\n INDEX idx_is_active (is_active),\n INDEX idx_security (failed_login_attempts, locked_until)\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS s3_configurations (\n id INT AUTO_INCREMENT PRIMARY KEY,\n name VARCHAR(255) NOT NULL,\n endpoint VARCHAR(500) NOT NULL,\n bucket_name VARCHAR(255) NOT NULL,\n access_key VARCHAR(255) NOT NULL,\n secret_key VARCHAR(255) NOT NULL,\n is_active BOOLEAN NOT NULL DEFAULT TRUE,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n updated_at DATETIME NULL ON UPDATE CURRENT_TIMESTAMP,\n INDEX idx_is_active (is_active)\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS s3_configurations (\n id INT AUTO_INCREMENT PRIMARY KEY,\n name VARCHAR(255) NOT NULL,\n endpoint VARCHAR(500) NOT NULL,\n bucket_name VARCHAR(255) NOT NULL,\n access_key VARCHAR(255) NOT NULL,\n secret_key VARCHAR(255) NOT NULL,\n is_active BOOLEAN NOT NULL DEFAULT TRUE,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n updated_at DATETIME NULL ON UPDATE CURRENT_TIMESTAMP,\n INDEX idx_is_active (is_active)\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS v_folders (\n id INT AUTO_INCREMENT PRIMARY KEY,\n name VARCHAR(255) NOT NULL,\n slug VARCHAR(255) NOT NULL,\n s3_config_id INT NULL,\n s3_path VARCHAR(500) NULL,\n parent_id INT NULL,\n description TEXT NULL,\n is_public BOOLEAN NOT NULL DEFAULT TRUE,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n updated_at DATETIME NULL ON UPDATE CURRENT_TIMESTAMP,\n UNIQUE KEY unique_slug_parent (slug, parent_id),\n INDEX idx_slug (slug),\n INDEX idx_parent_id (parent_id),\n INDEX idx_s3_config_id (s3_config_id),\n FOREIGN KEY (parent_id) REFERENCES v_folders(id) ON DELETE CASCADE,\n FOREIGN KEY (s3_config_id) REFERENCES s3_configurations(id) ON DELETE SET NULL\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS v_folders (\n id INT AUTO_INCREMENT PRIMARY KEY,\n name VARCHAR(255) NOT NULL,\n slug VARCHAR(255) NOT NULL,\n s3_config_id INT NULL,\n s3_path VARCHAR(500) NULL,\n parent_id INT NULL,\n description TEXT NULL,\n is_public BOOLEAN NOT NULL DEFAULT TRUE,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n updated_at DATETIME NULL ON UPDATE CURRENT_TIMESTAMP,\n UNIQUE KEY unique_slug_parent (slug, parent_id),\n INDEX idx_slug (slug),\n INDEX idx_parent_id (parent_id),\n INDEX idx_s3_config_id (s3_config_id),\n FOREIGN KEY (parent_id) REFERENCES v_folders(id) ON DELETE CASCADE,\n FOREIGN KEY (s3_config_id) REFERENCES s3_configurations(id) ON DELETE SET NULL\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS tags (\n id INT AUTO_INCREMENT PRIMARY KEY,\n v_folder_id INT NOT NULL,\n name VARCHAR(255) NOT NULL,\n slug VARCHAR(255) NOT NULL,\n s3_file_key VARCHAR(1000) NOT NULL,\n file_name VARCHAR(500) NOT NULL,\n file_size BIGINT NOT NULL DEFAULT 0,\n download_token VARCHAR(255) UNIQUE NULL,\n description TEXT NULL,\n is_public BOOLEAN NOT NULL DEFAULT TRUE,\n is_folder BOOLEAN NOT NULL DEFAULT FALSE,\n is_stream BOOLEAN NOT NULL DEFAULT FALSE,\n download_count INT NOT NULL DEFAULT 0 COMMENT 'Anzahl der Downloads',\n last_downloaded_at DATETIME NULL COMMENT 'Zeitstempel des letzten Downloads',\n is_api_public BOOLEAN NOT NULL DEFAULT FALSE COMMENT 'Ob Tag über API öffentlich verfügbar ist',\n api_access_count INT NOT NULL DEFAULT 0 COMMENT 'Anzahl der API-Zugriffe',\n last_api_access_at DATETIME NULL COMMENT 'Zeitstempel des letzten API-Zugriffs',\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n updated_at DATETIME NULL ON UPDATE CURRENT_TIMESTAMP,\n UNIQUE KEY unique_slug_v_folder (slug, v_folder_id),\n INDEX idx_v_folder_id (v_folder_id),\n INDEX idx_slug (slug),\n INDEX idx_download_token (download_token),\n INDEX idx_tags_download_stats (download_count DESC, last_downloaded_at DESC),\n INDEX idx_tags_api_stats (is_api_public, api_access_count DESC, last_api_access_at DESC),\n FOREIGN KEY (v_folder_id) REFERENCES v_folders(id) ON DELETE CASCADE\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS tags (\n id INT AUTO_INCREMENT PRIMARY KEY,\n v_folder_id INT NOT NULL,\n name VARCHAR(255) NOT NULL,\n slug VARCHAR(255) NOT NULL,\n s3_file_key VARCHAR(1000) NOT NULL,\n file_name VARCHAR(500) NOT NULL,\n file_size BIGINT NOT NULL DEFAULT 0,\n download_token VARCHAR(255) UNIQUE NULL,\n description TEXT NULL,\n is_public BOOLEAN NOT NULL DEFAULT TRUE,\n is_folder BOOLEAN NOT NULL DEFAULT FALSE,\n is_stream BOOLEAN NOT NULL DEFAULT FALSE,\n download_count INT NOT NULL DEFAULT 0 COMMENT 'Anzahl der Downloads',\n last_downloaded_at DATETIME NULL COMMENT 'Zeitstempel des letzten Downloads',\n is_api_public BOOLEAN NOT NULL DEFAULT FALSE COMMENT 'Ob Tag über API öffentlich verfügbar ist',\n api_access_count INT NOT NULL DEFAULT 0 COMMENT 'Anzahl der API-Zugriffe',\n last_api_access_at DATETIME NULL COMMENT 'Zeitstempel des letzten API-Zugriffs',\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n updated_at DATETIME NULL ON UPDATE CURRENT_TIMESTAMP,\n UNIQUE KEY unique_slug_v_folder (slug, v_folder_id),\n INDEX idx_v_folder_id (v_folder_id),\n INDEX idx_slug (slug),\n INDEX idx_download_token (download_token),\n INDEX idx_tags_download_stats (download_count DESC, last_downloaded_at DESC),\n INDEX idx_tags_api_stats (is_api_public, api_access_count DESC, last_api_access_at DESC),\n FOREIGN KEY (v_folder_id) REFERENCES v_folders(id) ON DELETE CASCADE\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS storage_tokens (\n id INT AUTO_INCREMENT PRIMARY KEY,\n s3_config_id INT NOT NULL,\n s3_file_key VARCHAR(1000) NOT NULL,\n file_name VARCHAR(500) NOT NULL,\n file_size BIGINT NOT NULL DEFAULT 0,\n download_token VARCHAR(64) NOT NULL,\n s3_path VARCHAR(1000) NULL,\n uploaded_by_api_user VARCHAR(255) NULL,\n created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,\n last_accessed TIMESTAMP NULL,\n UNIQUE KEY download_token (download_token),\n INDEX idx_storage_tokens_s3_config_id (s3_config_id),\n INDEX idx_storage_tokens_token (download_token),\n INDEX idx_storage_tokens_key (s3_file_key(255)),\n INDEX idx_storage_tokens_created (created_at),\n FOREIGN KEY (s3_config_id) REFERENCES s3_configurations(id) ON DELETE CASCADE\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS storage_tokens (\n id INT AUTO_INCREMENT PRIMARY KEY,\n s3_config_id INT NOT NULL,\n s3_file_key VARCHAR(1000) NOT NULL,\n file_name VARCHAR(500) NOT NULL,\n file_size BIGINT NOT NULL DEFAULT 0,\n download_token VARCHAR(64) NOT NULL,\n s3_path VARCHAR(1000) NULL,\n uploaded_by_api_user VARCHAR(255) NULL,\n created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,\n last_accessed TIMESTAMP NULL,\n UNIQUE KEY download_token (download_token),\n INDEX idx_storage_tokens_s3_config_id (s3_config_id),\n INDEX idx_storage_tokens_token (download_token),\n INDEX idx_storage_tokens_key (s3_file_key(255)),\n INDEX idx_storage_tokens_created (created_at),\n FOREIGN KEY (s3_config_id) REFERENCES s3_configurations(id) ON DELETE CASCADE\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS api_users (\n id INT AUTO_INCREMENT PRIMARY KEY,\n name VARCHAR(255) NOT NULL,\n api_key VARCHAR(255) UNIQUE NOT NULL,\n secret_key VARCHAR(255) NOT NULL,\n is_active BOOLEAN DEFAULT TRUE,\n permissions JSON,\n created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,\n last_used TIMESTAMP NULL,\n request_count INT DEFAULT 0,\n\n INDEX idx_api_key (api_key),\n INDEX idx_is_active (is_active),\n INDEX idx_created_at (created_at)\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS api_users (\n id INT AUTO_INCREMENT PRIMARY KEY,\n name VARCHAR(255) NOT NULL,\n api_key VARCHAR(255) UNIQUE NOT NULL,\n secret_key VARCHAR(255) NOT NULL,\n is_active BOOLEAN DEFAULT TRUE,\n permissions JSON,\n created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,\n last_used TIMESTAMP NULL,\n request_count INT DEFAULT 0,\n\n INDEX idx_api_key (api_key),\n INDEX idx_is_active (is_active),\n INDEX idx_created_at (created_at)\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS download_logs (\n id INT AUTO_INCREMENT PRIMARY KEY,\n tag_id INT NOT NULL,\n s3_config_id INT NOT NULL,\n s3_file_key VARCHAR(500) NOT NULL,\n download_type ENUM('direct', 'api', 'token') NOT NULL,\n user_agent TEXT NULL,\n ip_address VARCHAR(45) NULL,\n file_size BIGINT NULL,\n download_duration_ms INT NULL,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n INDEX idx_download_logs_tag_id (tag_id),\n INDEX idx_download_logs_created_at (created_at),\n INDEX idx_download_logs_type (download_type),\n FOREIGN KEY (tag_id) REFERENCES tags(id) ON DELETE CASCADE,\n FOREIGN KEY (s3_config_id) REFERENCES s3_configurations(id) ON DELETE CASCADE\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS download_logs (\n id INT AUTO_INCREMENT PRIMARY KEY,\n tag_id INT NOT NULL,\n s3_config_id INT NOT NULL,\n s3_file_key VARCHAR(500) NOT NULL,\n download_type ENUM('direct', 'api', 'token') NOT NULL,\n user_agent TEXT NULL,\n ip_address VARCHAR(45) NULL,\n file_size BIGINT NULL,\n download_duration_ms INT NULL,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n INDEX idx_download_logs_tag_id (tag_id),\n INDEX idx_download_logs_created_at (created_at),\n INDEX idx_download_logs_type (download_type),\n FOREIGN KEY (tag_id) REFERENCES tags(id) ON DELETE CASCADE,\n FOREIGN KEY (s3_config_id) REFERENCES s3_configurations(id) ON DELETE CASCADE\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS api_access_logs (\n id INT AUTO_INCREMENT PRIMARY KEY,\n tag_id INT NULL,\n api_user_id INT NULL,\n endpoint VARCHAR(255) NOT NULL,\n method VARCHAR(10) NOT NULL,\n response_code INT NOT NULL,\n user_agent TEXT NULL,\n ip_address VARCHAR(45) NULL,\n request_data JSON NULL,\n response_data JSON NULL,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n INDEX idx_api_access_logs_tag_id (tag_id),\n INDEX idx_api_access_logs_created_at (created_at),\n INDEX idx_api_access_logs_api_user (api_user_id),\n INDEX idx_api_access_logs_endpoint (endpoint),\n INDEX idx_api_access_logs_method (method),\n FOREIGN KEY (tag_id) REFERENCES tags(id) ON DELETE SET NULL,\n FOREIGN KEY (api_user_id) REFERENCES api_users(id) ON DELETE SET NULL\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS api_access_logs (\n id INT AUTO_INCREMENT PRIMARY KEY,\n tag_id INT NULL,\n api_user_id INT NULL,\n endpoint VARCHAR(255) NOT NULL,\n method VARCHAR(10) NOT NULL,\n response_code INT NOT NULL,\n user_agent TEXT NULL,\n ip_address VARCHAR(45) NULL,\n request_data JSON NULL,\n response_data JSON NULL,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n INDEX idx_api_access_logs_tag_id (tag_id),\n INDEX idx_api_access_logs_created_at (created_at),\n INDEX idx_api_access_logs_api_user (api_user_id),\n INDEX idx_api_access_logs_endpoint (endpoint),\n INDEX idx_api_access_logs_method (method),\n FOREIGN KEY (tag_id) REFERENCES tags(id) ON DELETE SET NULL,\n FOREIGN KEY (api_user_id) REFERENCES api_users(id) ON DELETE SET NULL\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS general_api_logs (\n id INT AUTO_INCREMENT PRIMARY KEY,\n api_user_id INT NULL,\n endpoint VARCHAR(255) NOT NULL,\n method VARCHAR(10) NOT NULL,\n action_type ENUM('upload', 'download', 'delete', 'list', 'create', 'update', 'other') NOT NULL DEFAULT 'other',\n response_code INT NOT NULL,\n user_agent TEXT NULL,\n ip_address VARCHAR(45) NULL,\n request_data JSON NULL,\n response_data JSON NULL,\n execution_time_ms INT NULL,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n INDEX idx_general_api_logs_api_user (api_user_id),\n INDEX idx_general_api_logs_created_at (created_at),\n INDEX idx_general_api_logs_endpoint (endpoint),\n INDEX idx_general_api_logs_method (method),\n INDEX idx_general_api_logs_action_type (action_type),\n INDEX idx_general_api_logs_response_code (response_code),\n FOREIGN KEY (api_user_id) REFERENCES api_users(id) ON DELETE SET NULL\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS general_api_logs (\n id INT AUTO_INCREMENT PRIMARY KEY,\n api_user_id INT NULL,\n endpoint VARCHAR(255) NOT NULL,\n method VARCHAR(10) NOT NULL,\n action_type ENUM('upload', 'download', 'delete', 'list', 'create', 'update', 'other') NOT NULL DEFAULT 'other',\n response_code INT NOT NULL,\n user_agent TEXT NULL,\n ip_address VARCHAR(45) NULL,\n request_data JSON NULL,\n response_data JSON NULL,\n execution_time_ms INT NULL,\n created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n INDEX idx_general_api_logs_api_user (api_user_id),\n INDEX idx_general_api_logs_created_at (created_at),\n INDEX idx_general_api_logs_endpoint (endpoint),\n INDEX idx_general_api_logs_method (method),\n INDEX idx_general_api_logs_action_type (action_type),\n INDEX idx_general_api_logs_response_code (response_code),\n FOREIGN KEY (api_user_id) REFERENCES api_users(id) ON DELETE SET NULL\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS `portal_categories` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `name` varchar(255) NOT NULL,\n `slug` varchar(255) NOT NULL,\n `description` text DEFAULT NULL,\n `image_url` varchar(500) DEFAULT NULL,\n `sort_order` int(11) NOT NULL DEFAULT 0,\n `is_active` tinyint(1) NOT NULL DEFAULT 1,\n `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n PRIMARY KEY (`id`),\n UNIQUE KEY `slug` (`slug`),\n KEY `idx_portal_categories_active` (`is_active`),\n KEY `idx_portal_categories_sort` (`sort_order`)\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS `portal_categories` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `name` varchar(255) NOT NULL,\n `slug` varchar(255) NOT NULL,\n `description` text DEFAULT NULL,\n `image_url` varchar(500) DEFAULT NULL,\n `sort_order` int(11) NOT NULL DEFAULT 0,\n `is_active` tinyint(1) NOT NULL DEFAULT 1,\n `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n PRIMARY KEY (`id`),\n UNIQUE KEY `slug` (`slug`),\n KEY `idx_portal_categories_active` (`is_active`),\n KEY `idx_portal_categories_sort` (`sort_order`)\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
debug
Executing statement:
"""
CREATE TABLE IF NOT EXISTS `portal_category_tags` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `category_id` int(11) NOT NULL,\n `tag_id` int(11) NOT NULL,\n `sort_order` int(11) NOT NULL DEFAULT 0,\n `custom_name` varchar(255) DEFAULT NULL,\n `custom_description` text DEFAULT NULL,\n `custom_image_url` varchar(500) DEFAULT NULL,\n `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n PRIMARY KEY (`id`),\n UNIQUE KEY `category_tag` (`category_id`, `tag_id`),\n KEY `idx_portal_category_tags_category` (`category_id`),\n KEY `idx_portal_category_tags_tag` (`tag_id`),\n KEY `idx_portal_category_tags_sort` (`sort_order`),\n CONSTRAINT `fk_portal_category_tags_category` FOREIGN KEY (`category_id`) REFERENCES `portal_categories` (`id`) ON DELETE CASCADE,\n CONSTRAINT `fk_portal_category_tags_tag` FOREIGN KEY (`tag_id`) REFERENCES `tags` (`id`) ON DELETE CASCADE\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
doctrine
[
"sql" => """
CREATE TABLE IF NOT EXISTS `portal_category_tags` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `category_id` int(11) NOT NULL,\n `tag_id` int(11) NOT NULL,\n `sort_order` int(11) NOT NULL DEFAULT 0,\n `custom_name` varchar(255) DEFAULT NULL,\n `custom_description` text DEFAULT NULL,\n `custom_image_url` varchar(500) DEFAULT NULL,\n `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n PRIMARY KEY (`id`),\n UNIQUE KEY `category_tag` (`category_id`, `tag_id`),\n KEY `idx_portal_category_tags_category` (`category_id`),\n KEY `idx_portal_category_tags_tag` (`tag_id`),\n KEY `idx_portal_category_tags_sort` (`sort_order`),\n CONSTRAINT `fk_portal_category_tags_category` FOREIGN KEY (`category_id`) REFERENCES `portal_categories` (`id`) ON DELETE CASCADE,\n CONSTRAINT `fk_portal_category_tags_tag` FOREIGN KEY (`tag_id`) REFERENCES `tags` (`id`) ON DELETE CASCADE\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
"""
]
Log messages generated during the compilation of the service container.
Messages
Class
174
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\AutoWarmS3CacheCommand" (parent: .abstract.instanceof.App\Command\AutoWarmS3CacheCommand).
Resolving inheritance for ".instanceof.App\Command\AutoWarmS3CacheCommand.0.App\Command\AutoWarmS3CacheCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\AutoWarmS3CacheCommand).
Resolving inheritance for "App\Command\AutoWarmS3CacheCommand" (parent: .instanceof.App\Command\AutoWarmS3CacheCommand.0.App\Command\AutoWarmS3CacheCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateStorageTokenTableCommand" (parent: .abstract.instanceof.App\Command\CreateStorageTokenTableCommand).
Resolving inheritance for ".instanceof.App\Command\CreateStorageTokenTableCommand.0.App\Command\CreateStorageTokenTableCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateStorageTokenTableCommand).
Resolving inheritance for "App\Command\CreateStorageTokenTableCommand" (parent: .instanceof.App\Command\CreateStorageTokenTableCommand.0.App\Command\CreateStorageTokenTableCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateUserCommand" (parent: .abstract.instanceof.App\Command\CreateUserCommand).
Resolving inheritance for ".instanceof.App\Command\CreateUserCommand.0.App\Command\CreateUserCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateUserCommand).
Resolving inheritance for "App\Command\CreateUserCommand" (parent: .instanceof.App\Command\CreateUserCommand.0.App\Command\CreateUserCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\InitializeDatabaseCommand" (parent: .abstract.instanceof.App\Command\InitializeDatabaseCommand).
Resolving inheritance for ".instanceof.App\Command\InitializeDatabaseCommand.0.App\Command\InitializeDatabaseCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\InitializeDatabaseCommand).
Resolving inheritance for "App\Command\InitializeDatabaseCommand" (parent: .instanceof.App\Command\InitializeDatabaseCommand.0.App\Command\InitializeDatabaseCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ListUsersCommand" (parent: .abstract.instanceof.App\Command\ListUsersCommand).
Resolving inheritance for ".instanceof.App\Command\ListUsersCommand.0.App\Command\ListUsersCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ListUsersCommand).
Resolving inheritance for "App\Command\ListUsersCommand" (parent: .instanceof.App\Command\ListUsersCommand.0.App\Command\ListUsersCommand).
Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\WarmS3CacheCommand" (parent: .abstract.instanceof.App\Command\WarmS3CacheCommand).
Resolving inheritance for ".instanceof.App\Command\WarmS3CacheCommand.0.App\Command\WarmS3CacheCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\WarmS3CacheCommand).
Resolving inheritance for "App\Command\WarmS3CacheCommand" (parent: .instanceof.App\Command\WarmS3CacheCommand.0.App\Command\WarmS3CacheCommand).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\ApiUserManagerController" (parent: .abstract.instanceof.App\Controller\ApiUserManagerController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\ApiUserManagerController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\ApiUserManagerController).
Resolving inheritance for ".instanceof.App\Controller\ApiUserManagerController.0.App\Controller\ApiUserManagerController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\ApiUserManagerController).
Resolving inheritance for "App\Controller\ApiUserManagerController" (parent: .instanceof.App\Controller\ApiUserManagerController.0.App\Controller\ApiUserManagerController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DashboardController" (parent: .abstract.instanceof.App\Controller\DashboardController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DashboardController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DashboardController).
Resolving inheritance for ".instanceof.App\Controller\DashboardController.0.App\Controller\DashboardController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DashboardController).
Resolving inheritance for "App\Controller\DashboardController" (parent: .instanceof.App\Controller\DashboardController.0.App\Controller\DashboardController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DownloadStatisticsController" (parent: .abstract.instanceof.App\Controller\DownloadStatisticsController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DownloadStatisticsController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DownloadStatisticsController).
Resolving inheritance for ".instanceof.App\Controller\DownloadStatisticsController.0.App\Controller\DownloadStatisticsController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DownloadStatisticsController).
Resolving inheritance for "App\Controller\DownloadStatisticsController" (parent: .instanceof.App\Controller\DownloadStatisticsController.0.App\Controller\DownloadStatisticsController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\JsTranslationsController" (parent: .abstract.instanceof.App\Controller\JsTranslationsController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\JsTranslationsController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\JsTranslationsController).
Resolving inheritance for ".instanceof.App\Controller\JsTranslationsController.0.App\Controller\JsTranslationsController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\JsTranslationsController).
Resolving inheritance for "App\Controller\JsTranslationsController" (parent: .instanceof.App\Controller\JsTranslationsController.0.App\Controller\JsTranslationsController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\LoginController" (parent: .abstract.instanceof.App\Controller\LoginController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\LoginController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\LoginController).
Resolving inheritance for ".instanceof.App\Controller\LoginController.0.App\Controller\LoginController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\LoginController).
Resolving inheritance for "App\Controller\LoginController" (parent: .instanceof.App\Controller\LoginController.0.App\Controller\LoginController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\PortalController" (parent: .abstract.instanceof.App\Controller\PortalController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\PortalController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\PortalController).
Resolving inheritance for ".instanceof.App\Controller\PortalController.0.App\Controller\PortalController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\PortalController).
Resolving inheritance for "App\Controller\PortalController" (parent: .instanceof.App\Controller\PortalController.0.App\Controller\PortalController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\PublicDownloadController" (parent: .abstract.instanceof.App\Controller\PublicDownloadController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\PublicDownloadController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\PublicDownloadController).
Resolving inheritance for ".instanceof.App\Controller\PublicDownloadController.0.App\Controller\PublicDownloadController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\PublicDownloadController).
Resolving inheritance for "App\Controller\PublicDownloadController" (parent: .instanceof.App\Controller\PublicDownloadController.0.App\Controller\PublicDownloadController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\S3\S3ManagerConfigApiController" (parent: .abstract.instanceof.App\Controller\S3\S3ManagerConfigApiController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\S3\S3ManagerConfigApiController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\S3\S3ManagerConfigApiController).
Resolving inheritance for ".instanceof.App\Controller\S3\S3ManagerConfigApiController.0.App\Controller\S3\S3ManagerConfigApiController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\S3\S3ManagerConfigApiController).
Resolving inheritance for "App\Controller\S3\S3ManagerConfigApiController" (parent: .instanceof.App\Controller\S3\S3ManagerConfigApiController.0.App\Controller\S3\S3ManagerConfigApiController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\S3ManagerController" (parent: .abstract.instanceof.App\Controller\S3ManagerController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\S3ManagerController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\S3ManagerController).
Resolving inheritance for ".instanceof.App\Controller\S3ManagerController.0.App\Controller\S3ManagerController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\S3ManagerController).
Resolving inheritance for "App\Controller\S3ManagerController" (parent: .instanceof.App\Controller\S3ManagerController.0.App\Controller\S3ManagerController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\SecureApiController" (parent: .abstract.instanceof.App\Controller\SecureApiController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\SecureApiController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\SecureApiController).
Resolving inheritance for ".instanceof.App\Controller\SecureApiController.0.App\Controller\SecureApiController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\SecureApiController).
Resolving inheritance for "App\Controller\SecureApiController" (parent: .instanceof.App\Controller\SecureApiController.0.App\Controller\SecureApiController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\StaticFileController" (parent: .abstract.instanceof.App\Controller\StaticFileController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\StaticFileController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\StaticFileController).
Resolving inheritance for ".instanceof.App\Controller\StaticFileController.0.App\Controller\StaticFileController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\StaticFileController).
Resolving inheritance for "App\Controller\StaticFileController" (parent: .instanceof.App\Controller\StaticFileController.0.App\Controller\StaticFileController).
Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\VFolderManagerController" (parent: .abstract.instanceof.App\Controller\VFolderManagerController).
Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\VFolderManagerController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\VFolderManagerController).
Resolving inheritance for ".instanceof.App\Controller\VFolderManagerController.0.App\Controller\VFolderManagerController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\VFolderManagerController).
Resolving inheritance for "App\Controller\VFolderManagerController" (parent: .instanceof.App\Controller\VFolderManagerController.0.App\Controller\VFolderManagerController).
Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\ApiLoggingListener" (parent: .abstract.instanceof.App\EventListener\ApiLoggingListener).
Resolving inheritance for "App\EventListener\ApiLoggingListener" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\ApiLoggingListener).
Resolving inheritance for ".instanceof.App\EventListener\ApiSecurityListener.0.App\EventListener\ApiSecurityListener" (parent: .abstract.instanceof.App\EventListener\ApiSecurityListener).
Resolving inheritance for "App\EventListener\ApiSecurityListener" (parent: .instanceof.App\EventListener\ApiSecurityListener.0.App\EventListener\ApiSecurityListener).
Resolving inheritance for ".instanceof.App\EventListener\AuthenticationListener.0.App\EventListener\AuthenticationListener" (parent: .abstract.instanceof.App\EventListener\AuthenticationListener).
Resolving inheritance for "App\EventListener\AuthenticationListener" (parent: .instanceof.App\EventListener\AuthenticationListener.0.App\EventListener\AuthenticationListener).
Resolving inheritance for ".instanceof.App\EventListener\SecurityHeadersListener.0.App\EventListener\SecurityHeadersListener" (parent: .abstract.instanceof.App\EventListener\SecurityHeadersListener).
Resolving inheritance for "App\EventListener\SecurityHeadersListener" (parent: .instanceof.App\EventListener\SecurityHeadersListener.0.App\EventListener\SecurityHeadersListener).
Resolving inheritance for ".instanceof.App\EventListener\WebSecurityListener.0.App\EventListener\WebSecurityListener" (parent: .abstract.instanceof.App\EventListener\WebSecurityListener).
Resolving inheritance for "App\EventListener\WebSecurityListener" (parent: .instanceof.App\EventListener\WebSecurityListener.0.App\EventListener\WebSecurityListener).
Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\AppExtension" (parent: .abstract.instanceof.App\Twig\AppExtension).
Resolving inheritance for "App\Twig\AppExtension" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\AppExtension).
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.asset_mapper" (parent: cache.system).
Resolving inheritance for "cache.messenger.restart_workers_signal" (parent: cache.app).
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 "cache.http_client.pool" (parent: cache.app).
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 ".s3.browser.cache.inner" (parent: cache.adapter.filesystem).
Resolving inheritance for "cache.validator_expression_language" (parent: cache.system).
Resolving inheritance for "messenger.retry.multiplier_retry_strategy.async" (parent: messenger.retry.abstract_multiplier_retry_strategy).
Resolving inheritance for "messenger.retry.multiplier_retry_strategy.failed" (parent: messenger.retry.abstract_multiplier_retry_strategy).
Resolving inheritance for "notifier.transport_factory.null" (parent: notifier.transport_factory.abstract).
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.users_in_memory" (parent: security.user.provider.in_memory).
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.main" (parent: security.firewall.config).
Resolving inheritance for "security.listener.main.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.main" (parent: security.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 "monolog.logger" (parent: monolog.logger_prototype).
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 "messenger.bus.default.middleware.traceable" (parent: messenger.middleware.traceable).
Resolving inheritance for "messenger.bus.default.middleware.add_bus_name_stamp_middleware" (parent: messenger.middleware.add_bus_name_stamp_middleware).
Resolving inheritance for "messenger.bus.default.middleware.send_message" (parent: messenger.middleware.send_message).
Resolving inheritance for "messenger.bus.default.middleware.handle_message" (parent: messenger.middleware.handle_message).
Resolving inheritance for ".signing.messenger.default_serializer" (parent: messenger.signing_serializer).
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).
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.messenger" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.cache" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.asset_mapper" (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.profiler" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.doctrine" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.debug" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.security" (parent: monolog.logger_prototype).
Resolving inheritance for "monolog.logger.deprecation" (parent: monolog.logger_prototype).
213
Removed service "App\Service\PasswordHasherInterface"; reason: private alias.
Removed service "Symfony\Bundle\FrameworkBundle\Controller\ControllerHelper"; reason: private alias.
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.cli"; reason: private alias.
Removed service "error_renderer.default"; 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\Component\AssetMapper\AssetMapperInterface"; reason: private alias.
Removed service "asset_mapper.http_client"; reason: private alias.
Removed service "Symfony\Component\AssetMapper\ImportMap\ImportMapManager"; reason: private alias.
Removed service "Symfony\Component\AssetMapper\Compressor\CompressorInterface"; 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 "Symfony\Component\WebLink\HttpHeaderSerializer"; reason: private alias.
Removed service "Symfony\Component\WebLink\HttpHeaderParser"; 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 ".Symfony\Contracts\Cache\TagAwareCacheInterface $s3.browser.cache"; reason: private alias.
Removed service "Symfony\Contracts\Cache\TagAwareCacheInterface $s3BrowserCache"; reason: private alias.
Removed service ".Symfony\Contracts\Cache\CacheInterface $s3.browser.cache"; reason: private alias.
Removed service "Symfony\Contracts\Cache\CacheInterface $s3BrowserCache"; reason: private alias.
Removed service ".Psr\Cache\CacheItemPoolInterface $s3.browser.cache"; reason: private alias.
Removed service "Psr\Cache\CacheItemPoolInterface $s3BrowserCache"; reason: private alias.
Removed service ".Symfony\Contracts\Cache\NamespacedPoolInterface $s3.browser.cache"; reason: private alias.
Removed service "Symfony\Contracts\Cache\NamespacedPoolInterface $s3BrowserCache"; 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 "messenger.default_serializer"; reason: private alias.
Removed service "Symfony\Component\Messenger\Transport\Serialization\SerializerInterface"; reason: private alias.
Removed service "Symfony\Component\Messenger\MessageBusInterface"; reason: private alias.
Removed service "messenger.failure_transports.default"; 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 "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 "Twig\Environment"; reason: private alias.
Removed service "Symfony\Component\Mime\BodyRendererInterface"; reason: private alias.
Removed service "Symfony\UX\Turbo\Broadcaster\BroadcasterInterface"; 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.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 "logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface"; reason: private alias.
Removed service "twig.loader.filesystem"; reason: private alias.
Removed service "argument_resolver.controller_locator"; reason: private alias.
Removed service "doctrine.id_generator_locator"; reason: private alias.
Removed service "twig.loader"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $request.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $requestLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $console.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $consoleLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $messenger.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $messengerLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $cache.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $cacheLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $asset_mapper.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $assetMapperLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $http_client.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $httpClientLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $mailer.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $mailerLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $translation.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $translationLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $php.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $phpLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $event.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $eventLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $router.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $routerLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $profiler.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $profilerLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $doctrine.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $doctrineLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $debug.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $debugLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $security.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $securityLogger"; reason: private alias.
Removed service ".Psr\Log\LoggerInterface $deprecation.logger"; reason: private alias.
Removed service "Psr\Log\LoggerInterface $deprecationLogger"; reason: private alias.
Removed service ".service_locator.O8.cMm9"; reason: private alias.
Removed service ".service_locator.oeWXF0n"; reason: private alias.
Removed service ".service_locator.S9tnIXR"; reason: private alias.
Removed service "validator"; reason: private alias.
Removed service "http_client"; reason: private alias.
Removed service "http_client.uri_template.inner"; reason: private alias.
Removed service "asset_mapper.mapped_asset_factory"; reason: private alias.
Removed service "assets._default_package"; 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 "var_dumper.cli_dumper"; reason: private alias.
Removed service "twig.error_renderer.html.inner"; reason: private alias.
Removed service "turbo.broadcaster.imux"; reason: private alias.
Removed service "security.access.decision_manager"; reason: private alias.
Removed service "security.firewall.authenticator.main"; reason: private alias.
Removed service "asset_mapper.public_assets_path_resolver"; reason: private alias.
Removed service "security.event_dispatcher.main"; reason: private alias.
Removed service "messenger.bus.default"; reason: private alias.
Removed service ".signing.messenger.default_serializer.inner"; 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.D6tJ4Px"; reason: private alias.
85
Changed reference of service "App\Controller\JsTranslationsController" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "App\Controller\S3\S3ManagerConfigApiController" previously pointing to "router.default" to "router".
Changed reference of service "App\Controller\S3ManagerController" previously pointing to "router.default" to "router".
Changed reference of service "App\Controller\VFolderManagerController" previously pointing to "router.default" to "router".
Changed reference of service "App\EventListener\AuthenticationListener" previously pointing to "router.default" to "router".
Changed reference of service "App\EventListener\WebSecurityListener" previously pointing to "router.default" to "router".
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 "services_resetter" previously pointing to "translator.data_collector" to "translator".
Changed reference of service "fragment.renderer.inline" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "console.command.messenger_consume_messages" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "console.command.messenger_failed_messages_retry" 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 "asset_mapper.command.compile" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.mailer" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
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.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 "messenger.middleware.send_message" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "messenger.middleware.router_context" previously pointing to "router.default" to "router".
Changed reference of service "messenger.retry.send_failed_message_for_retry_listener" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "messenger.routable_message_bus" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
Changed reference of service "messenger.redispatch_message_handler" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
Changed reference of service "notifier.channel.chat" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
Changed reference of service "notifier.channel.sms" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
Changed reference of service "notifier.channel.email" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
Changed reference of service "notifier.channel.push" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
Changed reference of service "notifier.channel.desktop" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
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 "data_collector.messenger" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
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 "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 "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 "messenger.bus.default.middleware.send_message" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.jLLS2Ji" previously pointing to "debug.traced.messenger.bus.default" to "messenger.default_bus".
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 ".service_locator.TJNRSaV" previously pointing to "router.default" to "router".
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.GW5y7PS" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
238
Removed service "App\Entity"; reason: abstract.
Removed service ".abstract.App\Service\PasswordHasherInterface"; reason: abstract.
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 ".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\VideoValidator"; 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 "messenger.middleware.send_message"; reason: abstract.
Removed service "messenger.signing_serializer"; reason: abstract.
Removed service "messenger.middleware.handle_message"; reason: abstract.
Removed service "messenger.middleware.add_bus_name_stamp_middleware"; reason: abstract.
Removed service "messenger.middleware.traceable"; reason: abstract.
Removed service "messenger.retry.abstract_multiplier_retry_strategy"; reason: abstract.
Removed service "notifier.transport_factory.abstract"; 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 "messenger.middleware.doctrine_transaction"; reason: abstract.
Removed service "messenger.middleware.doctrine_ping_connection"; reason: abstract.
Removed service "messenger.middleware.doctrine_close_connection"; reason: abstract.
Removed service "messenger.middleware.doctrine_open_transaction_logger"; 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 "security.access_token_handler.oidc.generator"; 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 "maker.auto_command.abstract"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\AutoWarmS3CacheCommand"; reason: abstract.
Removed service ".instanceof.App\Command\AutoWarmS3CacheCommand.0.App\Command\AutoWarmS3CacheCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\AutoWarmS3CacheCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateStorageTokenTableCommand"; reason: abstract.
Removed service ".instanceof.App\Command\CreateStorageTokenTableCommand.0.App\Command\CreateStorageTokenTableCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\CreateStorageTokenTableCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateUserCommand"; reason: abstract.
Removed service ".instanceof.App\Command\CreateUserCommand.0.App\Command\CreateUserCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\CreateUserCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\InitializeDatabaseCommand"; reason: abstract.
Removed service ".instanceof.App\Command\InitializeDatabaseCommand.0.App\Command\InitializeDatabaseCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\InitializeDatabaseCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ListUsersCommand"; reason: abstract.
Removed service ".instanceof.App\Command\ListUsersCommand.0.App\Command\ListUsersCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\ListUsersCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\WarmS3CacheCommand"; reason: abstract.
Removed service ".instanceof.App\Command\WarmS3CacheCommand.0.App\Command\WarmS3CacheCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\WarmS3CacheCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\ApiUserManagerController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\ApiUserManagerController"; reason: abstract.
Removed service ".instanceof.App\Controller\ApiUserManagerController.0.App\Controller\ApiUserManagerController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\ApiUserManagerController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DashboardController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DashboardController"; reason: abstract.
Removed service ".instanceof.App\Controller\DashboardController.0.App\Controller\DashboardController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\DashboardController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\DownloadStatisticsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\DownloadStatisticsController"; reason: abstract.
Removed service ".instanceof.App\Controller\DownloadStatisticsController.0.App\Controller\DownloadStatisticsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\DownloadStatisticsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\JsTranslationsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\JsTranslationsController"; reason: abstract.
Removed service ".instanceof.App\Controller\JsTranslationsController.0.App\Controller\JsTranslationsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\JsTranslationsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\LoginController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\LoginController"; reason: abstract.
Removed service ".instanceof.App\Controller\LoginController.0.App\Controller\LoginController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\LoginController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\PortalController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\PortalController"; reason: abstract.
Removed service ".instanceof.App\Controller\PortalController.0.App\Controller\PortalController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\PortalController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\PublicDownloadController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\PublicDownloadController"; reason: abstract.
Removed service ".instanceof.App\Controller\PublicDownloadController.0.App\Controller\PublicDownloadController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\PublicDownloadController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\S3\S3ManagerConfigApiController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\S3\S3ManagerConfigApiController"; reason: abstract.
Removed service ".instanceof.App\Controller\S3\S3ManagerConfigApiController.0.App\Controller\S3\S3ManagerConfigApiController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\S3\S3ManagerConfigApiController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\S3ManagerController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\S3ManagerController"; reason: abstract.
Removed service ".instanceof.App\Controller\S3ManagerController.0.App\Controller\S3ManagerController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\S3ManagerController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\SecureApiController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\SecureApiController"; reason: abstract.
Removed service ".instanceof.App\Controller\SecureApiController.0.App\Controller\SecureApiController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\SecureApiController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\StaticFileController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\StaticFileController"; reason: abstract.
Removed service ".instanceof.App\Controller\StaticFileController.0.App\Controller\StaticFileController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\StaticFileController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\VFolderManagerController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\VFolderManagerController"; reason: abstract.
Removed service ".instanceof.App\Controller\VFolderManagerController.0.App\Controller\VFolderManagerController"; reason: abstract.
Removed service ".abstract.instanceof.App\Controller\VFolderManagerController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\ApiLoggingListener"; reason: abstract.
Removed service ".abstract.instanceof.App\EventListener\ApiLoggingListener"; reason: abstract.
Removed service ".instanceof.App\EventListener\ApiSecurityListener.0.App\EventListener\ApiSecurityListener"; reason: abstract.
Removed service ".abstract.instanceof.App\EventListener\ApiSecurityListener"; reason: abstract.
Removed service ".instanceof.App\EventListener\AuthenticationListener.0.App\EventListener\AuthenticationListener"; reason: abstract.
Removed service ".abstract.instanceof.App\EventListener\AuthenticationListener"; reason: abstract.
Removed service ".instanceof.App\EventListener\SecurityHeadersListener.0.App\EventListener\SecurityHeadersListener"; reason: abstract.
Removed service ".abstract.instanceof.App\EventListener\SecurityHeadersListener"; reason: abstract.
Removed service ".instanceof.App\EventListener\WebSecurityListener.0.App\EventListener\WebSecurityListener"; reason: abstract.
Removed service ".abstract.instanceof.App\EventListener\WebSecurityListener"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\AppExtension"; reason: abstract.
Removed service ".abstract.instanceof.App\Twig\AppExtension"; reason: abstract.
145
Removed service "App\Exception\AuthenticationException"; reason: unused.
Removed service "controller.helper"; reason: unused.
Removed service "http_cache"; reason: unused.
Removed service "http_cache.store"; reason: unused.
Removed service "reverse_container"; reason: unused.
Removed service "assets.empty_package"; reason: unused.
Removed service "asset_mapper.compressor.brotli"; reason: unused.
Removed service "asset_mapper.compressor.zstandard"; reason: unused.
Removed service "asset_mapper.compressor.gzip"; 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 "mailer.mailer"; reason: unused.
Removed service "translator.logging"; reason: unused.
Removed service "serializer.mapping.cache.symfony"; reason: unused.
Removed service "serializer.name_converter.camel_case_to_snake_case"; 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 "web_link.http_header_parser"; 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 "validator.form.attribute_metadata"; reason: unused.
Removed service "messenger.transport.symfony_serializer"; reason: unused.
Removed service "messenger.middleware.validation"; reason: unused.
Removed service "messenger.middleware.router_context"; reason: unused.
Removed service "messenger.transport.amqp.factory"; reason: unused.
Removed service "messenger.transport.redis.factory"; reason: unused.
Removed service "messenger.transport.sqs.factory"; reason: unused.
Removed service "messenger.transport.beanstalkd.factory"; 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 "notifier.admin_recipient.0"; reason: unused.
Removed service "doctrine.dbal.well_known_schema_asset_filter"; reason: unused.
Removed service "doctrine.dbal.default_schema_manager_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 "twig.loader.chain"; reason: unused.
Removed service "twig.extension.htmlsanitizer"; reason: unused.
Removed service "twig.extension.debug"; reason: unused.
Removed service "security.helper"; reason: unused.
Removed service "security.authentication.session_strategy_noop"; reason: unused.
Removed service "security.user_checker_locator"; reason: unused.
Removed service "security.authentication_utils"; reason: unused.
Removed service "security.context_listener"; reason: unused.
Removed service "security.firewall.event_dispatcher_locator"; reason: unused.
Removed service "security.authenticator.managers_locator"; 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.main"; 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.syslog"; 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 "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 ".debug.serializer.normalizer.serializer.denormalizer.unwrapping"; reason: unused.
Removed service ".debug.serializer.normalizer.serializer.normalizer.flatten_exception"; 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 "security.ldap_locator"; reason: unused.
Removed service "monolog.logger.translation"; reason: unused.
Removed service ".service_locator.TJNRSaV.controller.helper"; 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 ".service_locator.rAuPNI6"; reason: unused.
349
Inlined service "App\Service\ApiUserService" to "App\Controller\ApiUserManagerController".
Inlined service ".service_locator.TJNRSaV.App\Controller\ApiUserManagerController" to "App\Controller\ApiUserManagerController".
Inlined service ".service_locator.TJNRSaV.App\Controller\DashboardController" to "App\Controller\DashboardController".
Inlined service ".service_locator.TJNRSaV.App\Controller\DownloadStatisticsController" to "App\Controller\DownloadStatisticsController".
Inlined service ".service_locator.TJNRSaV.App\Controller\JsTranslationsController" to "App\Controller\JsTranslationsController".
Inlined service ".service_locator.TJNRSaV.App\Controller\LoginController" to "App\Controller\LoginController".
Inlined service "App\Repository\PortalRepository" to "App\Controller\PortalController".
Inlined service "App\Service\ImageUploadService" to "App\Controller\PortalController".
Inlined service ".service_locator.TJNRSaV.App\Controller\PortalController" to "App\Controller\PortalController".
Inlined service "App\Service\StreamingService" to "App\Controller\PublicDownloadController".
Inlined service "App\Service\ExcelViewService" to "App\Controller\PublicDownloadController".
Inlined service ".service_locator.TJNRSaV.App\Controller\PublicDownloadController" to "App\Controller\PublicDownloadController".
Inlined service ".service_locator.TJNRSaV.App\Controller\S3\S3ManagerConfigApiController" to "App\Controller\S3\S3ManagerConfigApiController".
Inlined service "App\Service\S3\S3FolderZipService" to "App\Controller\S3ManagerController".
Inlined service "App\Service\S3\S3ManagerUploadService" to "App\Controller\S3ManagerController".
Inlined service "App\Service\S3\S3ManagerDeleteService" to "App\Controller\S3ManagerController".
Inlined service ".service_locator.TJNRSaV.App\Controller\S3ManagerController" to "App\Controller\S3ManagerController".
Inlined service ".service_locator.TJNRSaV.App\Controller\SecureApiController" to "App\Controller\SecureApiController".
Inlined service ".service_locator.TJNRSaV.App\Controller\StaticFileController" to "App\Controller\StaticFileController".
Inlined service ".service_locator.TJNRSaV.App\Controller\VFolderManagerController" to "App\Controller\VFolderManagerController".
Inlined service "App\Service\S3\S3TagPathService" to "App\Service\S3\S3ManagerUploadService".
Inlined service "App\Service\SimplePasswordHasher" to "App\Service\UserService".
Inlined service "error_handler.error_renderer.serializer" to "error_controller".
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.Txw8eiW" to "console.command.cache_pool_invalidate_tags".
Inlined service "messenger.listener.reset_services" to "console.command.messenger_consume_messages".
Inlined service "console.messenger.application" to "console.messenger.execute_command_handler".
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 "cache.asset_mapper.recorder_inner" to "cache.asset_mapper".
Inlined service "cache.messenger.restart_workers_signal.recorder_inner" to "cache.messenger.restart_workers_signal".
Inlined service "asset_mapper.asset_package" to "assets.packages".
Inlined service "asset_mapper.cached_mapped_asset_factory" to "asset_mapper".
Inlined service "asset_mapper.cached_mapped_asset_factory.inner" to "asset_mapper.cached_mapped_asset_factory".
Inlined service "asset_mapper.asset_package.inner" to "asset_mapper.asset_package".
Inlined service "asset_mapper.local_public_assets_filesystem" to "asset_mapper.command.compile".
Inlined service "asset_mapper.importmap.auditor" to "asset_mapper.importmap.command.audit".
Inlined service "asset_mapper.importmap.update_checker" to "asset_mapper.importmap.command.outdated".
Inlined service "asset_mapper.compressor" to "asset_mapper.assets.command.compress".
Inlined service "cache.http_client.pool.recorder_inner" to "cache.http_client.pool".
Inlined service "monolog.logger.http_client" to "http_client.transport".
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.services" 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 "error_handler.error_renderer.default" to "error_handler.error_renderer.serializer".
Inlined service ".s3.browser.cache.inner.recorder_inner" to ".s3.browser.cache.inner".
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.rht_M5G" 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.DA6YX9k" 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 "messenger.retry_strategy_locator" to "messenger.retry.send_failed_message_for_retry_listener".
Inlined service ".service_locator.UoTJz6S" to "messenger.failure.send_failed_message_to_failure_transport_listener".
Inlined service ".service_locator.jLLS2Ji" to "messenger.routable_message_bus".
Inlined service "chatter.transport_factory" to "chatter.transports".
Inlined service "chatter.transports" to "chatter.messenger.chat_handler".
Inlined service "texter.transport_factory" to "texter.transports".
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 "data_collector.http_client" to "profiler".
Inlined service "data_collector.doctrine" to "profiler".
Inlined service "data_collector.messenger" to "profiler".
Inlined service "mailer.data_collector" to "profiler".
Inlined service "notifier.data_collector" 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 "doctrine.dbal.connection_factory.dsn_parser" to "doctrine.dbal.connection_factory".
Inlined service "doctrine.dbal.legacy_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.fipAWQf" 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 "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 "doctrine.orm.container_repository_factory" 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 "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 "twig.loader.native_filesystem" to "twig".
Inlined service "twig.extension.security_csrf" to "twig".
Inlined service "twig.extension.dump" 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.importmap" to "twig".
Inlined service "twig.extension.logout_url" to "twig".
Inlined service "twig.extension.security" to "twig".
Inlined service "App\Twig\AppExtension" to "twig".
Inlined service "doctrine.twig.doctrine_extension" to "twig".
Inlined service "twig.extension.webprofiler" to "twig".
Inlined service "twig.extension.code" to "twig".
Inlined service "stimulus.ux_controllers_twig_extension" to "twig".
Inlined service "turbo.twig.extension" to "twig".
Inlined service "stimulus.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 "twig.configurator.environment" to "twig".
Inlined service ".service_locator.3DrAUl_.twig.template_cache_warmer" to "twig.template_cache_warmer".
Inlined service "twig.template_iterator" 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.R5M5UPr" to "twig.runtime_loader".
Inlined service "twig.mime_body_renderer" to "twig.mailer.message_listener".
Inlined service "asset_mapper.importmap.renderer" to "twig.runtime.importmap".
Inlined service "stimulus.helper" to "stimulus.twig_extension".
Inlined service "stimulus.asset_mapper.auto_import_locator" to "stimulus.asset_mapper.controllers_map_generator".
Inlined service "turbo.broadcaster.action_renderer.inner" to "turbo.broadcaster.action_renderer".
Inlined service "turbo.id_accessor" to "turbo.broadcaster.action_renderer".
Inlined service "turbo.broadcaster.action_renderer" to "turbo.doctrine.event_listener".
Inlined service ".service_locator.1mjVCan" to "security.token_storage".
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.user_password_hasher" to "form.listener.password_hasher".
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.session_strategy" to "security.listener.session.main".
Inlined service "debug.security.firewall.authenticator.main.inner" to "debug.security.firewall.authenticator.main".
Inlined service "security.user_checker" to "security.listener.user_checker.main".
Inlined service "security.http_utils" to "security.exception_listener.main".
Inlined service "security.exception_listener.main" to "security.firewall.map.context.main".
Inlined service "security.firewall.map.config.main" to "security.firewall.map.context.main".
Inlined service "monolog.processor.psr_log_message" to "monolog.handler.main".
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 "sensiolabs_typescript.public_asset_path_resolver.inner" to "sensiolabs_typescript.public_asset_path_resolver".
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 "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.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 "messenger.senders_locator" to "messenger.bus.default.middleware.send_message".
Inlined service "messenger.bus.default.messenger.handlers_locator" to "messenger.bus.default.middleware.handle_message".
Inlined service "process.messenger.process_message_handler" to ".messenger.handler_descriptor.Die6Bxe".
Inlined service "console.messenger.execute_command_handler" to ".messenger.handler_descriptor.NumTeF8".
Inlined service "http_client.messenger.ping_webhook_handler" to ".messenger.handler_descriptor.Qv3faSN".
Inlined service "mailer.messenger.message_handler" to ".messenger.handler_descriptor.WG.oRBv".
Inlined service "messenger.redispatch_message_handler" to ".messenger.handler_descriptor.jyyWvHw".
Inlined service "chatter.messenger.chat_handler" to ".messenger.handler_descriptor.gEx8y9a".
Inlined service "texter.messenger.sms_handler" to ".messenger.handler_descriptor.UKIJHil".
Inlined service "texter.messenger.push_handler" to ".messenger.handler_descriptor.EXsqOW5".
Inlined service "texter.messenger.desktop_handler" to ".messenger.handler_descriptor.Dkv9sRY".
Inlined service "messenger.transport.native_php_serializer" to ".signing.messenger.default_serializer".
Inlined service ".debug.http_client.inner" 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 "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 "security.is_csrf_token_valid_attribute_expression_language" to "controller.is_csrf_token_valid_attribute_listener".
Inlined service "monolog.handler.null_internal" to "monolog.logger.event".
Inlined service ".service_locator.kvOAK9B" to ".service_locator.kvOAK9B.translation.warmer".
Inlined service ".service_locator.xdLQ5FJ" to ".service_locator.xdLQ5FJ.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 "sensiolabs_typescript.public_asset_path_resolver" to "asset_mapper.cached_mapped_asset_factory.inner".
Inlined service "asset_mapper_compiler" to "asset_mapper.cached_mapped_asset_factory.inner".
Inlined service "assets.empty_version_strategy" to "asset_mapper.asset_package.inner".
Inlined service "assets.context" to "asset_mapper.asset_package.inner".
Inlined service "argument_metadata_factory" to "debug.argument_resolver.inner".
Inlined service ".service_locator.1gw5tvd" 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 "serializer.normalizer.flatten_exception" 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 "security.authenticator.manager.main" to "debug.security.firewall.authenticator.main.inner".
Inlined service ".service_locator.e3uQjrj" to "console.command_loader".
Inlined service ".service_locator.xdLQ5FJ.router.default" to "router".
Inlined service "monolog.logger.router" to "router".
Inlined service "debug.traced.messenger.bus.default.inner" to "messenger.default_bus".
Inlined service "debug.event_dispatcher.inner" to "event_dispatcher".
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.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".
2
Tag "container.decorator" was defined on service(s) "http_client.uri_template", "security.csrf.same_origin_token_manager", "debug.validator", "debug.serializer", "debug.security.access.decision_manager", "debug.security.firewall.authenticator.main", "debug.security.event_dispatcher.main", "messenger.default_bus", "event_dispatcher", but was never used.
Tag "monolog.channel_logger" was defined on service(s) "monolog.logger", "monolog.logger.request", "monolog.logger.messenger", "monolog.logger.cache", "monolog.logger.asset_mapper", "monolog.logger.mailer", "monolog.logger.event", "monolog.logger.security", "monolog.logger.deprecation", but was never used.