1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Braintree\Block;
- use Magento\Framework\Phrase;
- use Magento\Payment\Block\ConfigurableInfo;
- /**
- * Class Info
- */
- class Info extends ConfigurableInfo
- {
- /**
- * Returns label
- *
- * @param string $field
- * @return Phrase
- */
- protected function getLabel($field)
- {
- return __($field);
- }
- }
|