Skip to content
Snippets Groups Projects

Issue #3522599 by jsacksick: Symfony autowire issues.

1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -22,12 +22,12 @@ services:
commerce_invoice.invoice_total_summary:
class: Drupal\commerce_invoice\InvoiceTotalSummary
autowire: true
arguments: ['@commerce_order.adjustment_transformer']
Drupal\commerce_invoice\InvoiceTotalSummaryInterface: '@commerce_invoice.invoice_total_summary'
commerce_invoice.order_paid_subscriber:
class: Drupal\commerce_invoice\EventSubscriber\OrderPaidSubscriber
autowire: true
arguments: ['@entity_type.manager']
tags:
- { name: event_subscriber }
@@ -53,13 +53,13 @@ services:
commerce_invoice.invoice_confirmation_subscriber:
class: Drupal\commerce_invoice\EventSubscriber\InvoiceConfirmationSubscriber
autowire: true
arguments: ['@commerce_invoice.invoice_confirmation_mail', '@commerce_invoice.invoice_file_manager']
tags:
- { name: event_subscriber }
commerce_invoice.invoice_confirmation_mail:
class: Drupal\commerce_invoice\Mail\InvoiceConfirmationMail
autowire: true
arguments: [ '@entity_type.manager', '@commerce.mail_handler', '@commerce_invoice.invoice_total_summary', '@commerce_invoice.invoice_file_manager', '@file_system']
Drupal\commerce_invoice\Mail\InvoiceConfirmationMailInterface: '@commerce_invoice.invoice_confirmation_mail'
commerce_invoice.breadcrumb:
Loading