Start.php 782 B

123456789101112131415161718192021222324252627282930313233
  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. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class Start extends \Magento\Paypal\Controller\Express\AbstractExpress\Start implements HttpGetActionInterface
  10. {
  11. /**
  12. * Config mode type
  13. *
  14. * @var string
  15. */
  16. protected $_configType = \Magento\Paypal\Model\Config::class;
  17. /**
  18. * Config method type
  19. *
  20. * @var string
  21. */
  22. protected $_configMethod = \Magento\Paypal\Model\Config::METHOD_WPP_EXPRESS;
  23. /**
  24. * Checkout mode type
  25. *
  26. * @var string
  27. */
  28. protected $_checkoutType = \Magento\Paypal\Model\Express\Checkout::class;
  29. }