Grand.php 493 B

123456789101112131415161718192021
  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\Total;
  7. class Grand extends AbstractTotal
  8. {
  9. /**
  10. * Collect invoice grand total
  11. *
  12. * @param \Magento\Sales\Model\Order\Invoice $invoice
  13. * @return $this
  14. * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  15. */
  16. public function collect(\Magento\Sales\Model\Order\Invoice $invoice)
  17. {
  18. return $this;
  19. }
  20. }