Item.php 378 B

12345678910111213141516171819
  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. class Item extends \Magento\Framework\DataObject implements ItemInterface
  8. {
  9. /**
  10. * {@inheritdoc}
  11. * @codeCoverageIgnore
  12. */
  13. public function getTitle()
  14. {
  15. return $this->_getData('title');
  16. }
  17. }