123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Model\Order\Invoice;
- /**
- * Order invoice configuration model
- *
- * @api
- * @since 100.0.2
- */
- class Config extends \Magento\Sales\Model\Order\Total\Config\Base
- {
- /**
- * Cache key for collectors
- *
- * @var string
- */
- protected $_collectorsCacheKey = 'sorted_order_invoice_collectors';
- /**
- * @var string
- */
- protected $_configSection = 'order_invoice';
- }
|