Tax.php 341 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Tax Total Row Renderer
  8. */
  9. namespace Magento\Tax\Block\Checkout;
  10. class Tax extends \Magento\Checkout\Block\Total\DefaultTotal
  11. {
  12. /**
  13. * @var string
  14. */
  15. protected $_template = 'Magento_Tax::checkout/tax.phtml';
  16. }