Review.php 683 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Braintree\Block\Paypal\Checkout;
  7. use Magento\Paypal\Block\Express;
  8. /**
  9. * Class Review
  10. *
  11. * @api
  12. * @since 100.1.0
  13. */
  14. class Review extends Express\Review
  15. {
  16. /**
  17. * Controller path
  18. *
  19. * @var string
  20. * @since 100.1.0
  21. */
  22. protected $_controllerPath = 'braintree/paypal';
  23. /**
  24. * Does not allow editing payment information as customer has gone through paypal flow already
  25. *
  26. * @return null
  27. * @codeCoverageIgnore
  28. * @since 100.1.0
  29. */
  30. public function getEditUrl()
  31. {
  32. return null;
  33. }
  34. }