Info.php 451 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Braintree\Block;
  7. use Magento\Framework\Phrase;
  8. use Magento\Payment\Block\ConfigurableInfo;
  9. /**
  10. * Class Info
  11. */
  12. class Info extends ConfigurableInfo
  13. {
  14. /**
  15. * Returns label
  16. *
  17. * @param string $field
  18. * @return Phrase
  19. */
  20. protected function getLabel($field)
  21. {
  22. return __($field);
  23. }
  24. }