ItemInterface.php 353 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Search\Model\Autocomplete;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. interface ItemInterface
  12. {
  13. /**
  14. * @return string
  15. */
  16. public function getTitle();
  17. /**
  18. * @return array
  19. */
  20. public function toArray();
  21. }