MeiliProdRds.php 242 B

1234567891011121314151617
  1. <?php
  2. namespace tw\redis;
  3. use tw\redis\traits\HashTrait;
  4. use tw\redis\traits\KeyTrait;
  5. class MeiliProdRds
  6. {
  7. use HashTrait;
  8. use KeyTrait;
  9. protected function key($prod = false): string
  10. {
  11. return 'meili:prods';
  12. }
  13. }