SELECT t0.id AS id_1, t0.order_type AS order_type_2, t0.delivery_date AS delivery_date_3, t0.delivery_start_time AS delivery_start_time_4, t0.delivery_end_time AS delivery_end_time_5, t0.created_at AS created_at_6, t0.updated_at AS updated_at_7, t0.customer_id AS customer_id_8, t0.shipping_address_id AS shipping_address_id_9, t0.billing_address_id AS billing_address_id_10, t0.delivery_schedule_id AS delivery_schedule_id_11, t0.shipping_product_id AS shipping_product_id_12, t0.created_by_id AS created_by_id_13, t0.updated_by_id AS updated_by_id_14 FROM cart t0 WHERE t0.id = ? LIMIT 1
SELECT t0.id AS id_1, t0.quantity AS quantity_2, t0.created_at AS created_at_3, t0.updated_at AS updated_at_4, t0.cart_id AS cart_id_5, t0.product_id AS product_id_6, t7.id AS id_8, t7.type AS type_9, t7.name AS name_10, t7.description AS description_11, t7.presentation AS presentation_12, t7.is_wholesaler AS is_wholesaler_13, t7.publicSale AS publicSale_14, t7.active AS active_15, t7.isDeleted AS isDeleted_16, t7.recommended AS recommended_17, t7.tax AS tax_18, t7.base_price AS base_price_19, t7.price AS price_20, t7.thumbnail AS thumbnail_21, t7.image AS image_22, t7.idCategory AS idCategory_23, t7.idSize AS idSize_24, t7.unit_of_measurement_id AS unit_of_measurement_id_25, t0.created_by_id AS created_by_id_26, t0.updated_by_id AS updated_by_id_27 FROM cart_item t0 LEFT JOIN product t7 ON t0.product_id = t7.id WHERE t0.cart_id = ?
SELECT s0_.current_stock AS current_stock_0, s0_.minimum_stock_level AS minimum_stock_level_1, s0_.stop_selling_stock_level AS stop_selling_stock_level_2, s0_.perishable AS perishable_3, s0_.product_id AS product_id_4 FROM stock_item s0_ INNER JOIN product p1_ ON s0_.product_id = p1_.id WHERE s0_.product_id = ? ORDER BY p1_.name ASC
SELECT s0_.current_stock AS current_stock_0, s0_.minimum_stock_level AS minimum_stock_level_1, s0_.stop_selling_stock_level AS stop_selling_stock_level_2, s0_.perishable AS perishable_3, s0_.product_id AS product_id_4 FROM stock_item s0_ INNER JOIN product p1_ ON s0_.product_id = p1_.id WHERE s0_.product_id = ? ORDER BY p1_.name ASC
SELECT t0.pkey AS pkey_1, t0.pvalue AS pvalue_2, t0.created_at AS created_at_3, t0.updated_at AS updated_at_4, t0.created_by_id AS created_by_id_5, t0.updated_by_id AS updated_by_id_6 FROM parameter t0
doctrine
SELECT s0_.current_stock AS current_stock_0, s0_.minimum_stock_level AS minimum_stock_level_1, s0_.stop_selling_stock_level AS stop_selling_stock_level_2, s0_.perishable AS perishable_3, s0_.product_id AS product_id_4 FROM stock_item s0_ INNER JOIN product p1_ ON s0_.product_id = p1_.id WHERE s0_.product_id = ? ORDER BY p1_.name ASC
SELECT s0_.current_stock AS current_stock_0, s0_.minimum_stock_level AS minimum_stock_level_1, s0_.stop_selling_stock_level AS stop_selling_stock_level_2, s0_.perishable AS perishable_3, s0_.product_id AS product_id_4 FROM stock_item s0_ INNER JOIN product p1_ ON s0_.product_id = p1_.id WHERE s0_.product_id = ? ORDER BY p1_.name ASC
SELECT t0.id AS id_1, t0.businessName AS businessName_2, t0.cuit AS cuit_3, t0.postalAddress AS postalAddress_4, t0.fiscalAddress AS fiscalAddress_5, t0.isActive AS isActive_6, t0.idIsis AS idIsis_7, t0.idIvaCondition AS idIvaCondition_8, t0.customer_id AS customer_id_9 FROM billing_address t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.name AS name_2, t0.receiptType AS receiptType_3, t0.documentType AS documentType_4, t0.receiptName AS receiptName_5, t0.isisName AS isisName_6, t0.is_active AS is_active_7 FROM iva_condition t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.place AS place_2, t0.area AS area_3, t0.postal_code AS postal_code_4, t0.city AS city_5, t0.apartment AS apartment_6, t0.phoneNumberA AS phoneNumberA_7, t0.phoneNumberB AS phoneNumberB_8, t0.isActive AS isActive_9, t0.notes AS notes_10, ST_AsBinary(t0.location) AS location_11, t0.formatted_address AS formatted_address_12, t0.customer_id AS customer_id_13 FROM street_address t0 WHERE t0.id = ?
SELECT COLUMN_NAME AS Field, COLUMN_TYPE AS Type, IS_NULLABLE AS `Null`, COLUMN_KEY AS `Key`, COLUMN_DEFAULT AS `Default`, EXTRA AS Extra, COLUMN_COMMENT AS Comment, CHARACTER_SET_NAME AS CharacterSet, COLLATION_NAME AS Collation FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'tallo5' AND TABLE_NAME = 'migration_versions' ORDER BY ORDINAL_POSITION ASC
doctrine
SELECT DATABASE()
doctrine
SELECT k.CONSTRAINT_NAME, k.COLUMN_NAME, k.REFERENCED_TABLE_NAME, k.REFERENCED_COLUMN_NAME /*!50116 , c.UPDATE_RULE, c.DELETE_RULE */ FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE k /*!50116 INNER JOIN INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS c ON c.CONSTRAINT_NAME = k.CONSTRAINT_NAME AND c.TABLE_NAME = k.TABLE_NAME */ WHERE k.TABLE_NAME = 'migration_versions' AND k.TABLE_SCHEMA = 'tallo5' /*!50116 AND c.CONSTRAINT_SCHEMA = 'tallo5' */ORDER BY k.ORDINAL_POSITION
doctrine
SELECT DATABASE()
doctrine
SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_NAME = 'migration_versions' AND TABLE_SCHEMA = 'tallo5' ORDER BY SEQ_IN_INDEX ASC
doctrine
SELECT t.ENGINE,
t.AUTO_INCREMENT,
t.TABLE_COMMENT,
t.CREATE_OPTIONS,
t.TABLE_COLLATION,
ccsa.CHARACTER_SET_NAME
FROM information_schema.TABLES t
INNER JOIN information_schema.`COLLATION_CHARACTER_SET_APPLICABILITY` ccsa
ON ccsa.COLLATION_NAME = t.TABLE_COLLATION
WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'migration_versions'
doctrine
SELECT * FROM migration_versions
doctrine
SELECT DATABASE()
doctrine
Notified event "kernel.response" to listener "Sentry\SentryBundle\EventListener\TracingRequestListener::handleKernelResponseEvent".
Removing method "setAuthChecker" of service "App\Accounting\Controller\AccountingAdminController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Accounting\Controller\AccountingAdminController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Authentication\Controller\AuthenticationController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Authentication\Controller\AuthenticationController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Authentication\Controller\RegistrationController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Authentication\Controller\RegistrationController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Authentication\Controller\UserController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Authentication\Controller\UserController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Billing\Controller\InvoiceController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Billing\Controller\InvoiceController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Core\Controller\AdminController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Core\Controller\AdminController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Core\Controller\ParameterController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Core\Controller\ParameterController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Customer\Controller\CustomerBillingAddressController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Customer\Controller\CustomerBillingAddressController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Customer\Controller\CustomerController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Customer\Controller\CustomerController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Customer\Controller\CustomerDebtController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Customer\Controller\CustomerDebtController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Customer\Controller\CustomerDeliveryAddressController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Customer\Controller\CustomerDeliveryAddressController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Customer\Controller\CustomerOrdersController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Customer\Controller\CustomerOrdersController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Customer\Controller\CustomerPaymentMethodsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Customer\Controller\CustomerPaymentMethodsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Customer\Controller\DebtorsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Customer\Controller\DebtorsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\DeliveryZonesAvailableSchedulesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\DeliveryZonesAvailableSchedulesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\DeliveryZonesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\DeliveryZonesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\DeliveryZonesSchedulesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\DeliveryZonesSchedulesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\HolidayController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\HolidayController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\OrderDeliveryController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\OrderDeliveryController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\ShipmentRoutesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\ShipmentRoutesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\ShipmentsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\ShipmentsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\VehicleController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\VehicleController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\VehicleFeatureController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\VehicleFeatureController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Delivery\Controller\VehicleScheduleController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Delivery\Controller\VehicleScheduleController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Employee\Controller\EmployeeController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Employee\Controller\EmployeeController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Harvest\Controller\HarvestController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Harvest\Controller\HarvestController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Notification\Controller\NotificationsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Notification\Controller\NotificationsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Order\Controller\CartController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Order\Controller\CartController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Order\Controller\OrderActivityController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Order\Controller\OrderActivityController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Order\Controller\OrderCommentsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Order\Controller\OrderCommentsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Order\Controller\OrderController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Order\Controller\OrderController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Order\Controller\OrderItemsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Order\Controller\OrderItemsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Order\Controller\OrderPaymentsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Order\Controller\OrderPaymentsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Order\Controller\OrderStatsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Order\Controller\OrderStatsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Payment\Controller\CashAccountController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Payment\Controller\CashAccountController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Payment\Controller\CashAccountMovementsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Payment\Controller\CashAccountMovementsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Payment\Controller\PaymentController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Payment\Controller\PaymentController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Payment\Controller\PaymentMPNotificationController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Payment\Controller\PaymentMPNotificationController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Product\Controller\ProductCategoryController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Product\Controller\ProductCategoryController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Product\Controller\ProductController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Product\Controller\ProductController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Production\Controller\InventoryController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Production\Controller\InventoryController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Production\Controller\InventoryMovementsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Production\Controller\InventoryMovementsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Production\Controller\ProcessController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Production\Controller\ProcessController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Production\Controller\ProcessesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Production\Controller\ProcessesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Production\Controller\ProviderController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Production\Controller\ProviderController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Stock\Controller\StockController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Stock\Controller\StockController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Support\Controller\ClaimCommentsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Support\Controller\ClaimCommentsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Support\Controller\ClaimController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Support\Controller\ClaimController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Support\Controller\ClaimsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Support\Controller\ClaimsController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Support\Controller\FrontendMessagesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Support\Controller\FrontendMessagesController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\Testing\Controller\EmailTesterController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\Testing\Controller\EmailTesterController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setAuthChecker" of service "App\WebStore\Controller\OrdersController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Removing method "setRequestStack" of service "App\WebStore\Controller\OrdersController" from controller candidates: the method is called at instantiation, thus cannot be an action.
Changed reference of service "App\Authentication\Service\EmailVerificationService" previously pointing to "debug.traced.command.bus" to "messenger.default_bus".
Changed reference of service "App\Authentication\Service\UserService" previously pointing to "debug.traced.command.bus" to "messenger.default_bus".
Changed reference of service "App\Delivery\Service\ShipmentService" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "App\Order\Service\OrderService" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "App\Packing\Service\PackingService" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "App\Product\Service\ProductService" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "App\Stock\Service\StockService" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "locale_listener" previously pointing to "router.default" to "router".
Changed reference of service "http_kernel" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "services_resetter" previously pointing to "cache.app.traceable" to "cache.app".
Changed reference of service "services_resetter" previously pointing to "cache.system.traceable" to "cache.system".
Changed reference of service "services_resetter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "services_resetter" previously pointing to "cache.validator_expression_language.traceable" to "cache.validator_expression_language".
Changed reference of service "services_resetter" previously pointing to "security.untracked_token_storage" to "security.token_storage".
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 "cache.app.taggable" previously pointing to "cache.app.traceable" to "cache.app".
Changed reference of service "cache.system_clearer" previously pointing to "cache.system.traceable" to "cache.system".
Changed reference of service "cache.system_clearer" previously pointing to "cache.validator_expression_language.traceable" to "cache.validator_expression_language".
Changed reference of service "cache.global_clearer" previously pointing to "cache.app.traceable" to "cache.app".
Changed reference of service "cache.global_clearer" previously pointing to "cache.system.traceable" to "cache.system".
Changed reference of service "cache.global_clearer" previously pointing to "cache.validator_expression_language.traceable" to "cache.validator_expression_language".
Changed reference of service "mailer.mailer" previously pointing to "debug.traced.command.bus" 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.null" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.transport_factory.sendmail" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.transport_factory.smtp" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "mailer.transport_factory.native" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "router_listener" previously pointing to "router.default" to "router".
Changed reference of service "Symfony\Bundle\FrameworkBundle\Controller\RedirectController" previously pointing to "router.default" to "router".
Changed reference of service "validator.expression_language" previously pointing to "cache.validator_expression_language.traceable" to "cache.validator_expression_language".
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.command.bus" to "messenger.default_bus".
Changed reference of service "data_collector.events" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "data_collector.cache" previously pointing to "cache.app.traceable" to "cache.app".
Changed reference of service "data_collector.cache" previously pointing to "cache.system.traceable" to "cache.system".
Changed reference of service "data_collector.cache" previously pointing to "cache.validator_expression_language.traceable" to "cache.validator_expression_language".
Changed reference of service "data_collector.messenger" previously pointing to "debug.traced.command.bus" to "messenger.default_bus".
Changed reference of service "sensio_framework_extra.security.listener" previously pointing to "security.untracked_token_storage" to "security.token_storage".
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 "security.authorization_checker" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.impersonate_url_generator" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.firewall.lazy_context" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.logout_url_generator" previously pointing to "router.default" to "router".
Changed reference of service "security.logout_url_generator" previously pointing to "security.untracked_token_storage" to "security.token_storage".
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.validator.user_password" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.context_listener" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.context_listener" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.logout_listener" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.authentication.listener.abstract" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.authentication.listener.abstract" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.exception_listener" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.authentication.switchuser_listener" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.authentication.switchuser_listener" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.access_listener" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.authenticator.manager" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.authenticator.manager" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authenticator.x509" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.authenticator.remote_user" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "data_collector.security" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "debug.security.firewall" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authenticator.manager.login" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.exception_listener.login" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.authenticator.jwt.auth_password" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authenticator.manager.auth_password" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.exception_listener.auth_password" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.authenticator.jwt.api" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "security.authenticator.manager.api" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "security.exception_listener.api" previously pointing to "security.untracked_token_storage" to "security.token_storage".
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 "twig.app_variable" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "twig.extension.routing" previously pointing to "router.default" to "router".
Changed reference of service "Sentry\SentryBundle\EventListener\RequestListener" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "lexik_jwt_authentication.security.authentication.provider" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.security.authentication.listener" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "lexik_jwt_authentication.security.authentication.listener" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.jws_provider.default" previously pointing to "lexik_jwt_authentication.key_loader.raw" to "lexik_jwt_authentication.key_loader".
Changed reference of service "lexik_jwt_authentication.jwt_manager" previously pointing to "lexik_jwt_authentication.encoder.lcobucci" to "lexik_jwt_authentication.encoder".
Changed reference of service "lexik_jwt_authentication.jwt_manager" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.jws_provider.lcobucci" previously pointing to "lexik_jwt_authentication.key_loader.raw" to "lexik_jwt_authentication.key_loader".
Changed reference of service "lexik_jwt_authentication.handler.authentication_success" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.handler.authentication_failure" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.security.jwt_authenticator" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.security.guard.jwt_token_authenticator" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service "lexik_jwt_authentication.check_config_command" previously pointing to "lexik_jwt_authentication.key_loader.raw" to "lexik_jwt_authentication.key_loader".
Changed reference of service ".service_locator.uEtDFS3" previously pointing to "debug.traced.command.bus" 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 ".service_locator.l1ae.Qz" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.l1ae.Qz" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service ".service_locator.HLwzKIm" previously pointing to "router.default" to "router".
Changed reference of service ".service_locator.OhcSuYm" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
Changed reference of service ".service_locator.nLgZj7R" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "debug.security.user_value_resolver.inner" previously pointing to "security.untracked_token_storage" to "security.token_storage".
Changed reference of service "cache.app_clearer" previously pointing to "cache.app.traceable" to "cache.app".
Removed service "container.env"; 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 "http_client.abstract_retry_strategy"; reason: abstract.
Removed service "mailer.transport_factory.abstract"; 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 "maker.auto_command.abstract"; reason: abstract.
Removed service "doctrine.dbal.logger.profiling"; reason: abstract.
Removed service "doctrine.dbal.logger.backtrace"; reason: abstract.
Removed service "doctrine.dbal.connection"; reason: abstract.
Removed service "doctrine.dbal.connection.event_manager"; reason: abstract.
Removed service "doctrine.dbal.connection.configuration"; reason: abstract.
Removed service "doctrine.dbal.schema_asset_filter_manager"; reason: abstract.
Removed service "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 "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.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 "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 "sentry.tracing.traceable_cache_adapter"; reason: abstract.
Removed service "sentry.tracing.traceable_tag_aware_cache_adapter"; reason: abstract.
Removed service "lexik_jwt_authentication.key_loader.abstract"; reason: abstract.
Removed service "lexik_jwt_authentication.security.jwt_authenticator"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Accounting\Controller\AccountingAdminController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Accounting\Controller\AccountingAdminController"; reason: abstract.
Removed service ".abstract.instanceof.App\Accounting\Controller\AccountingAdminController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Accounting\MessageHandler\InvoiceCreatedEventHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Accounting\MessageHandler\InvoiceCreatedEventHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Accounting\MessageHandler\PaymentCreatedEventHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Accounting\MessageHandler\PaymentCreatedEventHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Authentication\Controller\AuthenticationController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Authentication\Controller\AuthenticationController"; reason: abstract.
Removed service ".abstract.instanceof.App\Authentication\Controller\AuthenticationController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Authentication\Controller\RegistrationController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Authentication\Controller\RegistrationController"; reason: abstract.
Removed service ".abstract.instanceof.App\Authentication\Controller\RegistrationController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Authentication\Controller\UserController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Authentication\Controller\UserController"; reason: abstract.
Removed service ".abstract.instanceof.App\Authentication\Controller\UserController"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Authentication\Repository\UserRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Authentication\Repository\UserRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Billing\Controller\InvoiceController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Billing\Controller\InvoiceController"; reason: abstract.
Removed service ".abstract.instanceof.App\Billing\Controller\InvoiceController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Billing\MessageHandler\InvoiceCreatedEventHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Billing\MessageHandler\InvoiceCreatedEventHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Billing\MessageHandler\OrderLockedEventHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Billing\MessageHandler\OrderLockedEventHandler"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Billing\Repository\InvoiceRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Billing\Repository\InvoiceRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FinnegansInvoiceCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\FinnegansInvoiceCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\InvoiceOrderCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\InvoiceOrderCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\LoadTestFixturesCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\LoadTestFixturesCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\MigrateFrontendMessagesCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\MigrateFrontendMessagesCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\MigrationPostVersion20210212184305"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\MigrationPostVersion20210212184305"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\PrepareOrdersCommand"; reason: abstract.
Removed service ".abstract.instanceof.App\Command\PrepareOrdersCommand"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Core\Controller\AdminController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Core\Controller\AdminController"; reason: abstract.
Removed service ".abstract.instanceof.App\Core\Controller\AdminController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Core\Controller\ParameterController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Core\Controller\ParameterController"; reason: abstract.
Removed service ".abstract.instanceof.App\Core\Controller\ParameterController"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Core\Repository\ParameterRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Core\Repository\ParameterRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Customer\Controller\CustomerBillingAddressController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Customer\Controller\CustomerBillingAddressController"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Controller\CustomerBillingAddressController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Customer\Controller\CustomerController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Customer\Controller\CustomerController"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Controller\CustomerController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Customer\Controller\CustomerDebtController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Customer\Controller\CustomerDebtController"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Controller\CustomerDebtController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Customer\Controller\CustomerDeliveryAddressController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Customer\Controller\CustomerDeliveryAddressController"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Controller\CustomerDeliveryAddressController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Customer\Controller\CustomerOrdersController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Customer\Controller\CustomerOrdersController"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Controller\CustomerOrdersController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Customer\Controller\CustomerPaymentMethodsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Customer\Controller\CustomerPaymentMethodsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Controller\CustomerPaymentMethodsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Customer\Controller\DebtorsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Customer\Controller\DebtorsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Controller\DebtorsController"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Customer\Repository\BillingAddressRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Repository\BillingAddressRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Customer\Repository\CustomerRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Repository\CustomerRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Customer\Repository\DeliveryAddressRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Customer\Repository\DeliveryAddressRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\DeliveryZonesAvailableSchedulesController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\DeliveryZonesAvailableSchedulesController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\DeliveryZonesAvailableSchedulesController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\DeliveryZonesController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\DeliveryZonesController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\DeliveryZonesController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\DeliveryZonesSchedulesController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\DeliveryZonesSchedulesController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\DeliveryZonesSchedulesController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\HolidayController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\HolidayController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\HolidayController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\OrderDeliveryController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\OrderDeliveryController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\OrderDeliveryController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\ShipmentRoutesController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\ShipmentRoutesController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\ShipmentRoutesController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\ShipmentsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\ShipmentsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\ShipmentsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\VehicleController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\VehicleController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\VehicleController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\VehicleFeatureController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\VehicleFeatureController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\VehicleFeatureController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Delivery\Controller\VehicleScheduleController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Delivery\Controller\VehicleScheduleController"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Controller\VehicleScheduleController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Delivery\MessageHandler\OrderCancelledMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\MessageHandler\OrderCancelledMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.App\Delivery\Normalizer\HolidayNormalizer"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Normalizer\HolidayNormalizer"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.App\Delivery\Normalizer\OrderShippingNormalizer"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Normalizer\OrderShippingNormalizer"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.App\Delivery\Normalizer\VehicleWorkScheduleNormalizer"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Normalizer\VehicleWorkScheduleNormalizer"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Delivery\Repository\DeliveryScheduleRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Repository\DeliveryScheduleRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Delivery\Repository\DeliveryZoneRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Repository\DeliveryZoneRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Delivery\Repository\HolidayRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Repository\HolidayRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Delivery\Repository\OrderShippingRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Repository\OrderShippingRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Delivery\Repository\VehicleFeatureRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Repository\VehicleFeatureRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Delivery\Repository\VehicleRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Repository\VehicleRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Delivery\Repository\VehicleRouteRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Repository\VehicleRouteRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Delivery\Repository\VehicleWorkScheduleRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Delivery\Repository\VehicleWorkScheduleRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Employee\Controller\EmployeeController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Employee\Controller\EmployeeController"; reason: abstract.
Removed service ".abstract.instanceof.App\Employee\Controller\EmployeeController"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Employee\Repository\EmployeeRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Employee\Repository\EmployeeRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.App\Framework\Serializer\PointNormalizer"; reason: abstract.
Removed service ".abstract.instanceof.App\Framework\Serializer\PointNormalizer"; reason: abstract.
Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.App\Framework\Twig\TwigStringPadExtension"; reason: abstract.
Removed service ".abstract.instanceof.App\Framework\Twig\TwigStringPadExtension"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Harvest\Controller\HarvestController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Harvest\Controller\HarvestController"; reason: abstract.
Removed service ".abstract.instanceof.App\Harvest\Controller\HarvestController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Notification\Controller\NotificationsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Notification\Controller\NotificationsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\Controller\NotificationsController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Notification\MessageHandler\OrderCancelledMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\MessageHandler\OrderCancelledMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Notification\MessageHandler\OrderDeliveredMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\MessageHandler\OrderDeliveredMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Notification\MessageHandler\OrderDispatchedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\MessageHandler\OrderDispatchedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Notification\MessageHandler\OrderFailedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\MessageHandler\OrderFailedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Notification\MessageHandler\OrderPlacedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\MessageHandler\OrderPlacedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Notification\MessageHandler\OrderShippingCreatedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\MessageHandler\OrderShippingCreatedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Notification\MessageHandler\ProductOutOfStockMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\MessageHandler\ProductOutOfStockMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Notification\MessageHandler\SendEmailVerificationMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\MessageHandler\SendEmailVerificationMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Notification\MessageHandler\SendPasswordResetMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\MessageHandler\SendPasswordResetMessageHandler"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Notification\Repository\NotificationRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Notification\Repository\NotificationRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Order\Controller\CartController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Order\Controller\CartController"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Controller\CartController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Order\Controller\OrderActivityController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Order\Controller\OrderActivityController"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Controller\OrderActivityController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Order\Controller\OrderCommentsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Order\Controller\OrderCommentsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Controller\OrderCommentsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Order\Controller\OrderController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Order\Controller\OrderController"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Controller\OrderController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Order\Controller\OrderItemsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Order\Controller\OrderItemsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Controller\OrderItemsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Order\Controller\OrderPaymentsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Order\Controller\OrderPaymentsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Controller\OrderPaymentsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Order\Controller\OrderStatsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Order\Controller\OrderStatsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Controller\OrderStatsController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\ActivityOrderCancelledMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\ActivityOrderCancelledMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\ActivityOrderDeliveredMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\ActivityOrderDeliveredMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\ActivityOrderDispatchedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\ActivityOrderDispatchedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\ActivityOrderFailedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\ActivityOrderFailedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\ActivityOrderPlacedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\ActivityOrderPlacedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\ActivityPaymentCreatedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\ActivityPaymentCreatedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\ActivityPaymentUpdatedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\ActivityPaymentUpdatedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\OrderShippingCreatedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\OrderShippingCreatedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\PaymentCreatedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\PaymentCreatedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\PaymentUpdatedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\PaymentUpdatedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Order\MessageHandler\StateOrderDeliveredMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\MessageHandler\StateOrderDeliveredMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Serializer\Normalizer\NormalizerInterface.0.App\Order\Normalizer\OrderNormalizer"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Normalizer\OrderNormalizer"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Order\Repository\CartRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Repository\CartRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Order\Repository\OrderActivityRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Repository\OrderActivityRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Order\Repository\OrderCommentRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Repository\OrderCommentRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Order\Repository\OrderRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Repository\OrderRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Order\Service\OrderActivityService"; reason: abstract.
Removed service ".abstract.instanceof.App\Order\Service\OrderActivityService"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Payment\Controller\CashAccountController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Payment\Controller\CashAccountController"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Controller\CashAccountController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Payment\Controller\CashAccountMovementsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Payment\Controller\CashAccountMovementsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Controller\CashAccountMovementsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Payment\Controller\PaymentController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Payment\Controller\PaymentController"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Controller\PaymentController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Payment\Controller\PaymentMPNotificationController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Payment\Controller\PaymentMPNotificationController"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Controller\PaymentMPNotificationController"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Payment\Repository\CashAccountMovementRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Repository\CashAccountMovementRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Payment\Repository\CashAccountRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Repository\CashAccountRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Payment\Repository\CreditCardRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Repository\CreditCardRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Payment\Repository\PaymentMethodRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Repository\PaymentMethodRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Payment\Repository\PaymentRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Repository\PaymentRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Payment\Repository\PaymentTransactionRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Repository\PaymentTransactionRepository"; reason: abstract.
Removed service ".instanceof.App\Payment\Service\IPaymentMethodService.0.App\Payment\Service\CashPaymentMethodService"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Service\CashPaymentMethodService"; reason: abstract.
Removed service ".instanceof.App\Payment\Service\IPaymentMethodService.0.App\Payment\Service\CheckPaymentMethodService"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Service\CheckPaymentMethodService"; reason: abstract.
Removed service ".instanceof.App\Payment\Service\IPaymentMethodService.0.App\Payment\Service\MercadoLinkPaymentMethodService"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Service\MercadoLinkPaymentMethodService"; reason: abstract.
Removed service ".instanceof.App\Payment\Service\IPaymentMethodService.0.App\Payment\Service\MercadoPagoCreditCardPaymentMethodService"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Service\MercadoPagoCreditCardPaymentMethodService"; reason: abstract.
Removed service ".instanceof.App\Payment\Service\IPaymentMethodService.0.App\Payment\Service\PosnetPaymentMethodService"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Service\PosnetPaymentMethodService"; reason: abstract.
Removed service ".instanceof.App\Payment\Service\IPaymentMethodService.0.App\Payment\Service\WireTransferPaymentMethodService"; reason: abstract.
Removed service ".abstract.instanceof.App\Payment\Service\WireTransferPaymentMethodService"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Product\Controller\ProductCategoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Product\Controller\ProductCategoryController"; reason: abstract.
Removed service ".abstract.instanceof.App\Product\Controller\ProductCategoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Product\Controller\ProductController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Product\Controller\ProductController"; reason: abstract.
Removed service ".abstract.instanceof.App\Product\Controller\ProductController"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Product\Repository\ProductCategoryRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Product\Repository\ProductCategoryRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Product\Repository\ProductRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Product\Repository\ProductRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Production\Controller\InventoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Production\Controller\InventoryController"; reason: abstract.
Removed service ".abstract.instanceof.App\Production\Controller\InventoryController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Production\Controller\InventoryMovementsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Production\Controller\InventoryMovementsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Production\Controller\InventoryMovementsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Production\Controller\ProcessController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Production\Controller\ProcessController"; reason: abstract.
Removed service ".abstract.instanceof.App\Production\Controller\ProcessController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Production\Controller\ProcessesController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Production\Controller\ProcessesController"; reason: abstract.
Removed service ".abstract.instanceof.App\Production\Controller\ProcessesController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Production\Controller\ProviderController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Production\Controller\ProviderController"; reason: abstract.
Removed service ".abstract.instanceof.App\Production\Controller\ProviderController"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Production\Repository\InventoryItemMovementRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Production\Repository\InventoryItemMovementRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Production\Repository\InventoryItemRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Production\Repository\InventoryItemRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Production\Repository\ProcessRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Production\Repository\ProcessRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Production\Repository\ProviderRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Production\Repository\ProviderRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Stock\Controller\StockController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Stock\Controller\StockController"; reason: abstract.
Removed service ".abstract.instanceof.App\Stock\Controller\StockController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Stock\MessageHandler\OrderCancelledMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Stock\MessageHandler\OrderCancelledMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Stock\MessageHandler\OrderPlacedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Stock\MessageHandler\OrderPlacedMessageHandler"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Stock\Repository\StockItemRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Stock\Repository\StockItemRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Stock\Repository\StockMovementRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Stock\Repository\StockMovementRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Stock\Service\StockService"; reason: abstract.
Removed service ".abstract.instanceof.App\Stock\Service\StockService"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Support\Controller\ClaimCommentsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Support\Controller\ClaimCommentsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Support\Controller\ClaimCommentsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Support\Controller\ClaimController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Support\Controller\ClaimController"; reason: abstract.
Removed service ".abstract.instanceof.App\Support\Controller\ClaimController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Support\Controller\ClaimsController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Support\Controller\ClaimsController"; reason: abstract.
Removed service ".abstract.instanceof.App\Support\Controller\ClaimsController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Support\Controller\FrontendMessagesController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Support\Controller\FrontendMessagesController"; reason: abstract.
Removed service ".abstract.instanceof.App\Support\Controller\FrontendMessagesController"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Support\MessageHandler\OrderDeliveredMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Support\MessageHandler\OrderDeliveredMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Support\MessageHandler\OrderFailedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Support\MessageHandler\OrderFailedMessageHandler"; reason: abstract.
Removed service ".instanceof.Symfony\Component\Messenger\Handler\MessageHandlerInterface.0.App\Support\MessageHandler\OrderPlacedMessageHandler"; reason: abstract.
Removed service ".abstract.instanceof.App\Support\MessageHandler\OrderPlacedMessageHandler"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Support\Repository\ClaimRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Support\Repository\ClaimRepository"; reason: abstract.
Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Support\Repository\FrontendMessageRepository"; reason: abstract.
Removed service ".abstract.instanceof.App\Support\Repository\FrontendMessageRepository"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Testing\Controller\EmailTesterController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Testing\Controller\EmailTesterController"; reason: abstract.
Removed service ".abstract.instanceof.App\Testing\Controller\EmailTesterController"; reason: abstract.
Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\WebStore\Controller\OrdersController"; reason: abstract.
Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\WebStore\Controller\OrdersController"; reason: abstract.
Removed service ".abstract.instanceof.App\WebStore\Controller\OrdersController"; reason: abstract.
Inlined service ".service_locator.l1ae.Qz.App\Accounting\Controller\AccountingAdminController" to "App\Accounting\Controller\AccountingAdminController".
Inlined service "App\Accounting\Client\FinnegansClient" to "App\Accounting\Service\AccountingService".
Inlined service ".service_locator.l1ae.Qz.App\Authentication\Controller\AuthenticationController" to "App\Authentication\Controller\AuthenticationController".
Inlined service ".service_locator.l1ae.Qz.App\Authentication\Controller\RegistrationController" to "App\Authentication\Controller\RegistrationController".
Inlined service ".service_locator.l1ae.Qz.App\Authentication\Controller\UserController" to "App\Authentication\Controller\UserController".
Inlined service ".service_locator.l1ae.Qz.App\Billing\Controller\InvoiceController" to "App\Billing\Controller\InvoiceController".
Inlined service "App\Billing\Service\AFIPWebService\AFIPBillingWebService" to "App\Billing\Service\AFIPService".
Inlined service "App\Billing\Service\AFIPWebService\AFIPAuthenticationWebService" to "App\Billing\Service\AFIPWebService\AFIPBillingWebService".
Inlined service "App\Billing\Service\AFIPService" to "App\Billing\Service\InvoiceService".
Inlined service ".service_locator.l1ae.Qz.App\Core\Controller\AdminController" to "App\Core\Controller\AdminController".
Inlined service ".service_locator.l1ae.Qz.App\Core\Controller\ParameterController" to "App\Core\Controller\ParameterController".
Inlined service ".service_locator.l1ae.Qz.App\Customer\Controller\CustomerBillingAddressController" to "App\Customer\Controller\CustomerBillingAddressController".
Inlined service ".service_locator.l1ae.Qz.App\Customer\Controller\CustomerController" to "App\Customer\Controller\CustomerController".
Inlined service ".service_locator.l1ae.Qz.App\Customer\Controller\CustomerDebtController" to "App\Customer\Controller\CustomerDebtController".
Inlined service ".service_locator.l1ae.Qz.App\Customer\Controller\CustomerDeliveryAddressController" to "App\Customer\Controller\CustomerDeliveryAddressController".
Inlined service ".service_locator.l1ae.Qz.App\Customer\Controller\CustomerOrdersController" to "App\Customer\Controller\CustomerOrdersController".
Inlined service ".service_locator.l1ae.Qz.App\Customer\Controller\CustomerPaymentMethodsController" to "App\Customer\Controller\CustomerPaymentMethodsController".
Inlined service ".service_locator.l1ae.Qz.App\Customer\Controller\DebtorsController" to "App\Customer\Controller\DebtorsController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\DeliveryZonesAvailableSchedulesController" to "App\Delivery\Controller\DeliveryZonesAvailableSchedulesController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\DeliveryZonesController" to "App\Delivery\Controller\DeliveryZonesController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\DeliveryZonesSchedulesController" to "App\Delivery\Controller\DeliveryZonesSchedulesController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\HolidayController" to "App\Delivery\Controller\HolidayController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\OrderDeliveryController" to "App\Delivery\Controller\OrderDeliveryController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\ShipmentRoutesController" to "App\Delivery\Controller\ShipmentRoutesController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\ShipmentsController" to "App\Delivery\Controller\ShipmentsController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\VehicleController" to "App\Delivery\Controller\VehicleController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\VehicleFeatureController" to "App\Delivery\Controller\VehicleFeatureController".
Inlined service ".service_locator.l1ae.Qz.App\Delivery\Controller\VehicleScheduleController" to "App\Delivery\Controller\VehicleScheduleController".
Inlined service "App\Delivery\Service\VehicleRoutingService" to "App\Delivery\Service\ShipmentService".
Inlined service ".service_locator.l1ae.Qz.App\Employee\Controller\EmployeeController" to "App\Employee\Controller\EmployeeController".
Inlined service ".service_locator.l1ae.Qz.App\Harvest\Controller\HarvestController" to "App\Harvest\Controller\HarvestController".
Inlined service ".service_locator.l1ae.Qz.App\Notification\Controller\NotificationsController" to "App\Notification\Controller\NotificationsController".
Inlined service "mailer.mailer" to "App\Notification\Service\MailerService".
Inlined service ".service_locator.l1ae.Qz.App\Order\Controller\CartController" to "App\Order\Controller\CartController".
Inlined service ".service_locator.l1ae.Qz.App\Order\Controller\OrderActivityController" to "App\Order\Controller\OrderActivityController".
Inlined service ".service_locator.l1ae.Qz.App\Order\Controller\OrderCommentsController" to "App\Order\Controller\OrderCommentsController".
Inlined service ".service_locator.l1ae.Qz.App\Order\Controller\OrderController" to "App\Order\Controller\OrderController".
Inlined service ".service_locator.l1ae.Qz.App\Order\Controller\OrderItemsController" to "App\Order\Controller\OrderItemsController".
Inlined service ".service_locator.l1ae.Qz.App\Order\Controller\OrderPaymentsController" to "App\Order\Controller\OrderPaymentsController".
Inlined service ".service_locator.l1ae.Qz.App\Order\Controller\OrderStatsController" to "App\Order\Controller\OrderStatsController".
Inlined service ".service_locator.l1ae.Qz.App\Payment\Controller\CashAccountController" to "App\Payment\Controller\CashAccountController".
Inlined service ".service_locator.l1ae.Qz.App\Payment\Controller\CashAccountMovementsController" to "App\Payment\Controller\CashAccountMovementsController".
Inlined service ".service_locator.l1ae.Qz.App\Payment\Controller\PaymentController" to "App\Payment\Controller\PaymentController".
Inlined service ".service_locator.l1ae.Qz.App\Payment\Controller\PaymentMPNotificationController" to "App\Payment\Controller\PaymentMPNotificationController".
Inlined service "App\Payment\Service\CashPaymentMethodService" to "App\Payment\Service\PaymentService".
Inlined service "App\Payment\Service\CheckPaymentMethodService" to "App\Payment\Service\PaymentService".
Inlined service "App\Payment\Service\WireTransferPaymentMethodService" to "App\Payment\Service\PaymentService".
Inlined service "App\Payment\Service\MercadoPagoCreditCardPaymentMethodService" to "App\Payment\Service\PaymentService".
Inlined service "App\Payment\Service\MercadoLinkPaymentMethodService" to "App\Payment\Service\PaymentService".
Inlined service "App\Payment\Service\PosnetPaymentMethodService" to "App\Payment\Service\PaymentService".
Inlined service ".service_locator.l1ae.Qz.App\Product\Controller\ProductCategoryController" to "App\Product\Controller\ProductCategoryController".
Inlined service ".service_locator.l1ae.Qz.App\Product\Controller\ProductController" to "App\Product\Controller\ProductController".
Inlined service ".service_locator.l1ae.Qz.App\Production\Controller\InventoryController" to "App\Production\Controller\InventoryController".
Inlined service ".service_locator.l1ae.Qz.App\Production\Controller\InventoryMovementsController" to "App\Production\Controller\InventoryMovementsController".
Inlined service ".service_locator.l1ae.Qz.App\Production\Controller\ProcessController" to "App\Production\Controller\ProcessController".
Inlined service ".service_locator.l1ae.Qz.App\Production\Controller\ProcessesController" to "App\Production\Controller\ProcessesController".
Inlined service ".service_locator.l1ae.Qz.App\Production\Controller\ProviderController" to "App\Production\Controller\ProviderController".
Inlined service ".service_locator.l1ae.Qz.App\Stock\Controller\StockController" to "App\Stock\Controller\StockController".
Inlined service ".service_locator.l1ae.Qz.App\Support\Controller\ClaimCommentsController" to "App\Support\Controller\ClaimCommentsController".
Inlined service ".service_locator.l1ae.Qz.App\Support\Controller\ClaimController" to "App\Support\Controller\ClaimController".
Inlined service ".service_locator.l1ae.Qz.App\Support\Controller\ClaimsController" to "App\Support\Controller\ClaimsController".
Inlined service ".service_locator.l1ae.Qz.App\Support\Controller\FrontendMessagesController" to "App\Support\Controller\FrontendMessagesController".
Inlined service ".service_locator.l1ae.Qz.App\Testing\Controller\EmailTesterController" to "App\Testing\Controller\EmailTesterController".
Inlined service ".service_locator.l1ae.Qz.App\WebStore\Controller\OrdersController" to "App\WebStore\Controller\OrdersController".
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.lLv4pWF" to "fragment.handler".
Inlined service "uri_signer" to "fragment.uri_generator".
Inlined service "monolog.logger.console" to "console.error_listener".
Inlined service "cache_clearer" to "console.command.cache_clear".
Inlined service "messenger.listener.reset_services" to "console.command.messenger_consume_messages".
Inlined service "mailer.transport_factory" to "mailer.transports".
Inlined service "monolog.logger.php" to "debug.debug_handlers_listener".
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.annotation.directory" to "routing.resolver".
Inlined service "routing.loader.annotation.file" to "routing.resolver".
Inlined service ".service_locator.kODoftA" to "routing.loader.container".
Inlined service "routing.resolver" to "routing.loader".
Inlined service ".service_locator.1ZPWTRB" to "router.expression_language_provider".
Inlined service ".service_locator.HLwzKIm.router.cache_warmer" to "router.cache_warmer".
Inlined service "annotations.dummy_registry" to "annotations.reader".
Inlined service "cache.property_access" to "property_accessor".
Inlined service "secrets.decryption_key" to "secrets.vault".
Inlined service "serializer.denormalizer.unwrapping" to "serializer".
Inlined service "App\Delivery\Normalizer\HolidayNormalizer" to "serializer".
Inlined service "App\Delivery\Normalizer\OrderShippingNormalizer" to "serializer".
Inlined service "App\Delivery\Normalizer\VehicleWorkScheduleNormalizer" to "serializer".
Inlined service "App\Framework\Serializer\PointNormalizer" to "serializer".
Inlined service "App\Order\Normalizer\OrderNormalizer" to "serializer".
Inlined service "serializer.normalizer.flatten_exception" to "serializer".
Inlined service "serializer.normalizer.problem" to "serializer".
Inlined service "serializer.normalizer.uid" to "serializer".
Inlined service "serializer.normalizer.json_serializable" to "serializer".
Inlined service "serializer.normalizer.datetime" to "serializer".
Inlined service "serializer.normalizer.constraint_violation_list" to "serializer".
Inlined service "serializer.normalizer.mime_message" to "serializer".
Inlined service "serializer.normalizer.datetimezone" to "serializer".
Inlined service "serializer.normalizer.dateinterval" to "serializer".
Inlined service "serializer.normalizer.form_error" to "serializer".
Inlined service "serializer.normalizer.backed_enum" to "serializer".
Inlined service "serializer.normalizer.data_uri" to "serializer".
Inlined service "serializer.denormalizer.array" to "serializer".
Inlined service "serializer.encoder.xml" to "serializer".
Inlined service "serializer.encoder.json" to "serializer".
Inlined service "serializer.encoder.yaml" to "serializer".
Inlined service "serializer.encoder.csv" to "serializer".
Inlined service "serializer.normalizer.property" to "serializer.normalizer.mime_message".
Inlined service "serializer.mapping.chain_loader" to "serializer.mapping.class_metadata_factory".
Inlined service "twig.error_renderer.html" to "error_handler.error_renderer.serializer".
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.19_mNxd" to "validator.validator_factory".
Inlined service "validator.expression_language" to "validator.expression".
Inlined service "messenger.senders_locator" to "messenger.middleware.send_message".
Inlined service "messenger.retry_strategy_locator" to "messenger.retry.send_failed_message_for_retry_listener".
Inlined service ".service_locator._wyX1Dp" to "messenger.failure.send_failed_message_to_failure_transport_listener".
Inlined service ".service_locator.uEtDFS3" to "messenger.routable_message_bus".
Inlined service "profiler.storage" 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.cache" 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 "doctrine_migrations.migrations_collector" to "profiler".
Inlined service "data_collector.messenger" to "profiler".
Inlined service "mailer.data_collector" to "profiler".
Inlined service "data_collector.config" to "profiler".
Inlined service "debug.validator.inner" to "debug.validator".
Inlined service "sensio_framework_extra.converter.manager" to "sensio_framework_extra.converter.listener".
Inlined service "sensio_framework_extra.converter.doctrine.orm" to "sensio_framework_extra.converter.manager".
Inlined service "framework_extra_bundle.date_time_param_converter" to "sensio_framework_extra.converter.manager".
Inlined service "sensio_framework_extra.converter.doctrine.orm.expression_language.default" to "sensio_framework_extra.converter.doctrine.orm".
Inlined service "sensio_framework_extra.view.guesser" to "sensio_framework_extra.view.listener".
Inlined service ".service_locator.PQK0.4p.sensio_framework_extra.view.listener" to "sensio_framework_extra.view.listener".
Inlined service "sensio_framework_extra.security.expression_language.default" to "sensio_framework_extra.security.listener".
Inlined service "maker.autoloader_util" to "maker.file_manager".
Inlined service "maker.file_link_formatter" 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_subscriber".
Inlined service "maker.user_class_builder" to "maker.maker.make_user".
Inlined service "monolog.logger.doctrine" to "doctrine.dbal.logger".
Inlined service "doctrine.dbal.logger.chain.default" to "doctrine.dbal.default_connection.configuration".
Inlined service "doctrine.dbal.default_schema_asset_filter_manager" to "doctrine.dbal.default_connection.configuration".
Inlined service "Sentry\SentryBundle\Tracing\Doctrine\DBAL\TracingDriverMiddleware" to "doctrine.dbal.default_connection.configuration".
Inlined service "doctrine.dbal.logger" to "doctrine.dbal.logger.chain.default".
Inlined service ".service_locator.Msn2H0B" to "doctrine.dbal.default_connection.event_manager".
Inlined service "doctrine.dbal.default_connection.configuration" to "doctrine.dbal.default_connection".
Inlined service "doctrine.dbal.default_connection.event_manager" to "doctrine.dbal.default_connection".
Inlined service "doctrine.dbal.connection_factory" to "doctrine.dbal.default_connection".
Inlined service ".service_locator.0wf_RJP" to "doctrine.orm.container_repository_factory".
Inlined service "ulid.factory" to "doctrine.ulid_generator".
Inlined service "uuid.factory" to "doctrine.uuid_generator".
Inlined service "cache.doctrine.orm.default.metadata" to "doctrine.orm.default_configuration".
Inlined service "cache.doctrine.orm.default.query.compatibility_layer" to "doctrine.orm.default_configuration".
Inlined service "cache.doctrine.orm.default.result.compatibility_layer" 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.default_entity_listener_resolver" to "doctrine.orm.default_configuration".
Inlined service "doctrine.orm.container_repository_factory" to "doctrine.orm.default_configuration".
Inlined service "doctrine.orm.default_configuration" to "doctrine.orm.default_entity_manager".
Inlined service "doctrine.orm.default_manager_configurator" to "doctrine.orm.default_entity_manager".
Inlined service ".service_locator.nLgZj7R" to "security.helper".
Inlined service "security.expression_language" to "security.access.expression_voter".
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.firewall.map.config.dev" to "security.firewall.map.context.dev".
Inlined service "debug.security.firewall.authenticator.login.inner" to "debug.security.firewall.authenticator.login".
Inlined service "App\Security\AuthenticationEntryPoint" to "security.exception_listener.login".
Inlined service "security.exception_listener.login" to "security.firewall.map.context.login".
Inlined service "security.firewall.map.config.login" to "security.firewall.map.context.login".
Inlined service "debug.security.firewall.authenticator.auth_password.inner" to "debug.security.firewall.authenticator.auth_password".
Inlined service "security.exception_listener.auth_password" to "security.firewall.map.context.auth_password".
Inlined service "security.firewall.map.config.auth_password" to "security.firewall.map.context.auth_password".
Inlined service "debug.security.firewall.authenticator.api.inner" to "debug.security.firewall.authenticator.api".
Inlined service "security.user_checker" to "security.listener.user_checker.api".
Inlined service "security.exception_listener.api" to "security.firewall.map.context.api".
Inlined service "security.firewall.map.config.api" to "security.firewall.map.context.api".
Inlined service "Monolog\Formatter\JsonFormatter" to "monolog.handler.docker".
Inlined service "twig.loader.native_filesystem" to "twig".
Inlined service "twig.extension.logout_url" to "twig".
Inlined service "twig.extension.security" to "twig".
Inlined service "twig.extension.profiler" to "twig".
Inlined service "twig.extension.trans" to "twig".
Inlined service "twig.extension.code" 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.serializer" to "twig".
Inlined service "App\Framework\Twig\TwigStringPadExtension" to "twig".
Inlined service "doctrine.twig.doctrine_extension" to "twig".
Inlined service "twig.extension.webprofiler" to "twig".
Inlined service "twig.extension.debug" to "twig".
Inlined service "Sentry\SentryBundle\Tracing\Twig\TwigTracingExtension" to "twig".
Inlined service "Sentry\SentryBundle\Twig\SentryExtension" to "twig".
Inlined service "twig.app_variable" to "twig".
Inlined service "twig.runtime_loader" to "twig".
Inlined service "twig.configurator.environment" to "twig".
Inlined service ".service_locator.aq4MYft.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.m_eDlXT" to "twig.runtime_loader".
Inlined service "twig.mime_body_renderer" to "twig.mailer.message_listener".
Inlined service "doctrine.migrations.configuration_loader" to "doctrine.migrations.dependency_factory".
Inlined service "doctrine.migrations.entity_manager_registry_loader" to "doctrine.migrations.dependency_factory".
Inlined service "doctrine.migrations.configuration" to "doctrine.migrations.configuration_loader".
Inlined service "doctrine.migrations.storage.table_storage" to "doctrine.migrations.configuration".
Inlined service "doctrine.migrations.container_aware_migrations_factory.inner" to "doctrine.migrations.container_aware_migrations_factory".
Inlined service "doctrine_migrations.migrations_flattener" to "doctrine_migrations.migrations_collector".
Inlined service "sentry.client" to "Sentry\State\HubInterface".
Inlined service "Sentry\SentryBundle\Tracing\Doctrine\DBAL\TracingDriverConnectionFactory" to "Sentry\SentryBundle\Tracing\Doctrine\DBAL\TracingDriverMiddleware".
Inlined service "Sentry\Integration\RequestFetcherInterface" to "sentry.client.options".
Inlined service "sentry.client.options" to "sentry.client".
Inlined service "Sentry\Transport\TransportFactoryInterface" to "sentry.client".
Inlined service "sentry.client.options" to "sentry.client".
Inlined service "sentry.client.options" to "sentry.client".
Inlined service "lexik_jwt_authentication.extractor.authorization_header_extractor" to "lexik_jwt_authentication.extractor.chain_extractor".
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_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_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_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_subscriber" to "maker.auto_command.make_subscriber".
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 "debug.argument_resolver.request_attribute.inner" to "debug.argument_resolver.request_attribute".
Inlined service "debug.argument_resolver.request.inner" to "debug.argument_resolver.request".
Inlined service "debug.argument_resolver.session.inner" to "debug.argument_resolver.session".
Inlined service "debug.security.user_value_resolver.inner" to "debug.security.user_value_resolver".
Inlined service "debug.argument_resolver.service.inner" to "debug.argument_resolver.service".
Inlined service "debug.argument_resolver.default.inner" to "debug.argument_resolver.default".
Inlined service "debug.argument_resolver.variadic.inner" to "debug.argument_resolver.variadic".
Inlined service "debug.argument_resolver.not_tagged_controller.inner" to "debug.argument_resolver.not_tagged_controller".
Inlined service "command.bus.messenger.handlers_locator" to "command.bus.middleware.handle_message".
Inlined service "event.bus.messenger.handlers_locator" to "event.bus.middleware.handle_message".
Inlined service "debug.traced.event.bus.inner" to "debug.traced.event.bus".
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.KLVvNIq" to ".doctrine.orm.default_metadata_driver".
Inlined service "doctrine.dbal.default_regex_schema_filter" to "doctrine.dbal.default_schema_asset_filter_manager".
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 "monolog.handler.null_internal" to "monolog.logger.event".
Inlined service "cache.validator.traceable.recorder_inner" to "cache.validator.traceable".
Inlined service "cache.serializer.traceable.recorder_inner" to "cache.serializer.traceable".
Inlined service "cache.annotations.traceable.recorder_inner" to "cache.annotations.traceable".
Inlined service "cache.property_info.traceable.recorder_inner" to "cache.property_info.traceable".
Inlined service "cache.messenger.restart_workers_signal.traceable.recorder_inner" to "cache.messenger.restart_workers_signal.traceable".
Inlined service "cache.doctrine.orm.default.result.traceable.recorder_inner" to "cache.doctrine.orm.default.result.traceable".
Inlined service "cache.doctrine.orm.default.query.traceable.recorder_inner" to "cache.doctrine.orm.default.query.traceable".
Inlined service "cache.security_expression_language.traceable.recorder_inner" to "cache.security_expression_language.traceable".
Inlined service ".service_locator..2EUcGt" to ".service_locator..2EUcGt.router.default".
Inlined service ".service_locator.HLwzKIm" to ".service_locator.HLwzKIm.router.cache_warmer".
Inlined service ".service_locator.PQK0.4p" to ".service_locator.PQK0.4p.sensio_framework_extra.view.listener".
Inlined service ".service_locator.aq4MYft" to ".service_locator.aq4MYft.twig.template_cache_warmer".
Inlined service "security.authenticator.manager.login" to "debug.security.firewall.authenticator.login.inner".
Inlined service "security.authenticator.manager.auth_password" to "debug.security.firewall.authenticator.auth_password.inner".
Inlined service "security.authenticator.manager.api" to "debug.security.firewall.authenticator.api.inner".
Inlined service "monolog.logger.http_client" to ".debug.http_client.inner".
Inlined service ".service_locator.IvJgq9I" to "console.command_loader".
Inlined service "cache.app.traceable.inner" to "cache.app.traceable.recorder_inner".
Inlined service "cache.system.traceable.inner" to "cache.system.traceable.recorder_inner".
Inlined service "cache.validator.traceable.inner" to "cache.validator.traceable.recorder_inner".
Inlined service "cache.serializer.traceable.inner" to "cache.serializer.traceable.recorder_inner".
Inlined service "cache.annotations.traceable.inner" to "cache.annotations.traceable.recorder_inner".
Inlined service "cache.property_info.traceable.inner" to "cache.property_info.traceable.recorder_inner".
Inlined service "cache.messenger.restart_workers_signal.traceable.inner" to "cache.messenger.restart_workers_signal.traceable.recorder_inner".
Inlined service "cache.validator_expression_language.traceable.inner" to "cache.validator_expression_language.traceable.recorder_inner".
Inlined service "cache.doctrine.orm.default.result.traceable.inner" to "cache.doctrine.orm.default.result.traceable.recorder_inner".
Inlined service "cache.doctrine.orm.default.query.traceable.inner" to "cache.doctrine.orm.default.query.traceable.recorder_inner".
Inlined service "cache.security_expression_language.traceable.inner" to "cache.security_expression_language.traceable.recorder_inner".
Inlined service ".service_locator..2EUcGt.router.default" to "router".
Inlined service "monolog.logger.router" to "router".
Inlined service "config_cache_factory" to "router".
Inlined service "debug.traced.command.bus.inner" to "messenger.default_bus".
Inlined service "lexik_jwt_authentication.jws_provider.lcobucci" to "lexik_jwt_authentication.encoder".
Inlined service "debug.event_dispatcher.inner" to "event_dispatcher".
Inlined service "monolog.logger.event" to "event_dispatcher".
Inlined service "cache.app.traceable.recorder_inner" to "cache.app".
Inlined service "cache.system.traceable.recorder_inner" to "cache.system".
Inlined service "cache.validator_expression_language.traceable.recorder_inner" to "cache.validator_expression_language".
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.annotation" to "routing.loader".
Inlined service "file_locator" to "routing.loader".
Inlined service "routing.loader.annotation" to "routing.loader".
Inlined service "file_locator" to "routing.loader".
Inlined service "routing.loader.annotation" to "routing.loader".
Inlined service "serializer.normalizer.object" to "serializer".
Inlined service "serializer.normalizer.object" to "serializer".
Inlined service "serializer.normalizer.object" to "serializer".
Inlined service "serializer.normalizer.object" to "serializer".
Inlined service "serializer.normalizer.object" to "serializer".
Inlined service "monolog.logger.profiler" to "profiler".
Inlined service "monolog.logger.profiler" to "profiler".
Inlined service "property_accessor" to "serializer".
Inlined service "serializer.name_converter.metadata_aware" to "serializer".
Inlined service "property_accessor" to "serializer".
Inlined service "serializer.mapping.class_discriminator_resolver" to "serializer".
Inlined service "serializer.name_converter.metadata_aware" to "serializer".
Inlined service "serializer.name_converter.metadata_aware" to "serializer".
Inlined service "serializer.mapping.class_discriminator_resolver" to "serializer".