Tax.php 527 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Sales\Block\Adminhtml\Order\Create\Totals;
  7. /**
  8. * Tax Total Row Renderer
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. * @SuppressWarnings(PHPMD.DepthOfInheritance)
  12. */
  13. class Tax extends \Magento\Sales\Block\Adminhtml\Order\Create\Totals\DefaultTotals
  14. {
  15. /**
  16. * Template
  17. *
  18. * @var string
  19. */
  20. protected $_template = 'Magento_Sales::order/create/totals/tax.phtml';
  21. }