FaviconInterface.php 390 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Page;
  7. /**
  8. * Favicon interface
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface FaviconInterface
  14. {
  15. /**
  16. * @return string
  17. */
  18. public function getFaviconFile();
  19. /**
  20. * @return string
  21. */
  22. public function getDefaultFavicon();
  23. }