12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Hosted Pro link infoblock
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- namespace Magento\Paypal\Block\Hosted\Pro;
- class Info extends \Magento\Paypal\Block\Payment\Info
- {
- /**
- * Don't show CC type
- *
- * @return false
- */
- public function getCcTypeName()
- {
- return false;
- }
- }
|