Info.php 593 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Paypal\Block\Payflow;
  7. /**
  8. * @deprecated 100.2.0 This class should not be used because parent class can handle client calls.
  9. * Class was not removed for backward compatibility.
  10. * @see \Magento\Paypal\Block\Payment\Info
  11. */
  12. class Info extends \Magento\Paypal\Block\Payment\Info
  13. {
  14. /**
  15. * Don't show CC type
  16. *
  17. * @return false
  18. * @deprecated 100.2.0 unused
  19. */
  20. public function getCcTypeName()
  21. {
  22. return false;
  23. }
  24. }