Base.php 240 B

1234567891011121314
  1. <?php
  2. namespace tw\redis;
  3. abstract class Base
  4. {
  5. /**
  6. * 需函数,返回键
  7. * @param integer|string $word: 组成键的关键部分
  8. * @return string
  9. */
  10. abstract protected function key($word=false) : string;
  11. }