Meili.php 247 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace tw\lib;
  3. /**
  4. * Meilisearch API for twong.
  5. */
  6. class Meili
  7. {
  8. public function indexProduct($product)
  9. {
  10. }
  11. public function unIndexProduct($productId)
  12. {
  13. }
  14. public function query()
  15. {
  16. }
  17. }