BuilderInterface.php 440 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Elasticsearch\Model\Adapter\Index;
  7. /**
  8. * @api
  9. * @since 100.1.0
  10. */
  11. interface BuilderInterface
  12. {
  13. /**
  14. * @return array
  15. * @since 100.1.0
  16. */
  17. public function build();
  18. /**
  19. * @param int $storeId
  20. * @return void
  21. * @since 100.1.0
  22. */
  23. public function setStoreId($storeId);
  24. }