Info.php 448 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Hosted Pro link infoblock
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Paypal\Block\Hosted\Pro;
  12. class Info extends \Magento\Paypal\Block\Payment\Info
  13. {
  14. /**
  15. * Don't show CC type
  16. *
  17. * @return false
  18. */
  19. public function getCcTypeName()
  20. {
  21. return false;
  22. }
  23. }