Meili.php 241 B

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