12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Block\Adminhtml\Order\Create\Totals;
- /**
- * Tax Total Row Renderer
- *
- * @author Magento Core Team <core@magentocommerce.com>
- * @SuppressWarnings(PHPMD.DepthOfInheritance)
- */
- class Tax extends \Magento\Sales\Block\Adminhtml\Order\Create\Totals\DefaultTotals
- {
- /**
- * Template
- *
- * @var string
- */
- protected $_template = 'Magento_Sales::order/create/totals/tax.phtml';
- }
|