Redis.php 184 B

123456789101112131415
  1. <?php
  2. namespace GatewayWorker\Lib\StoreDriver;
  3. /**
  4. *
  5. * Redis
  6. */
  7. class Redis extends \Redis
  8. {
  9. public function increment($key)
  10. {
  11. return parent::incr($key);
  12. }
  13. }