UpdateShippingMethods.php 696 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Paypal\Controller\Express;
  8. class UpdateShippingMethods extends \Magento\Paypal\Controller\Express\AbstractExpress\UpdateShippingMethods
  9. {
  10. /**
  11. * Config mode type
  12. *
  13. * @var string
  14. */
  15. protected $_configType = \Magento\Paypal\Model\Config::class;
  16. /**
  17. * Config method type
  18. *
  19. * @var string
  20. */
  21. protected $_configMethod = \Magento\Paypal\Model\Config::METHOD_WPP_EXPRESS;
  22. /**
  23. * Checkout mode type
  24. *
  25. * @var string
  26. */
  27. protected $_checkoutType = \Magento\Paypal\Model\Express\Checkout::class;
  28. }