FeedInterface.php 358 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\Framework\App;
  8. /**
  9. * Feed interface
  10. */
  11. interface FeedInterface
  12. {
  13. /**
  14. * Returns the formatted feed content
  15. *
  16. * @return string
  17. */
  18. public function getFormattedContent() : string;
  19. }