123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Model\Order\Invoice\Total;
- /**
- * Base class for invoice total
- * @api
- * @author Magento Core Team <core@magentocommerce.com>
- * @since 100.0.2
- */
- abstract class AbstractTotal extends \Magento\Sales\Model\Order\Total\AbstractTotal
- {
- /**
- * Collect invoice subtotal
- *
- * @param \Magento\Sales\Model\Order\Invoice $invoice
- * @return $this
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function collect(\Magento\Sales\Model\Order\Invoice $invoice)
- {
- return $this;
- }
- }
|