Info.php 436 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Block\Transparent;
  7. /**
  8. * Class Info. Payment Information block used for transparent redirect feature
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class Info extends \Magento\Framework\View\Element\Template
  14. {
  15. /**
  16. * @var string
  17. */
  18. protected $_template = 'Magento_Payment::transparent/info.phtml';
  19. }