Config.php 526 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Sales\Model\Order\Invoice;
  7. /**
  8. * Order invoice configuration model
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class Config extends \Magento\Sales\Model\Order\Total\Config\Base
  14. {
  15. /**
  16. * Cache key for collectors
  17. *
  18. * @var string
  19. */
  20. protected $_collectorsCacheKey = 'sorted_order_invoice_collectors';
  21. /**
  22. * @var string
  23. */
  24. protected $_configSection = 'order_invoice';
  25. }