ProductMetadataInterface.php 569 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\App;
  7. /**
  8. * Magento application product metadata
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface ProductMetadataInterface
  14. {
  15. /**
  16. * Get Product version
  17. *
  18. * @return string
  19. */
  20. public function getVersion();
  21. /**
  22. * Get Product edition
  23. *
  24. * @return string
  25. */
  26. public function getEdition();
  27. /**
  28. * Get Product name
  29. *
  30. * @return string
  31. */
  32. public function getName();
  33. }