ContentProviderInterface.php 536 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\ReleaseNotification\Model;
  7. /**
  8. * Requests the release notification content data from a defined service
  9. */
  10. interface ContentProviderInterface
  11. {
  12. /**
  13. * Retrieves the release notification content data.
  14. *
  15. * @param string $version
  16. * @param string $edition
  17. * @param string $locale
  18. *
  19. * @return string|false
  20. */
  21. public function getContent($version, $edition, $locale);
  22. }