Form.php 454 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Paypal\Block\Payflow\Bml;
  7. use Magento\Paypal\Model\Config;
  8. /**
  9. * @todo methodCode should be set in constructor, than this form should be eliminated
  10. *
  11. */
  12. class Form extends \Magento\Paypal\Block\Bml\Form
  13. {
  14. /**
  15. * Payment method code
  16. * @var string
  17. */
  18. protected $_methodCode = Config::METHOD_WPP_PE_BML;
  19. }