ProviderInterface.php 421 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Translate\Inline;
  7. /**
  8. * Factory like class to return an instance of the inline translate.
  9. */
  10. interface ProviderInterface
  11. {
  12. /**
  13. * Return instance of inline translate class
  14. *
  15. * @return \Magento\Framework\Translate\InlineInterface
  16. */
  17. public function get();
  18. }