Redis.php 499 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Library;
  3. use Hyperf\Utils\ApplicationContext;
  4. /**
  5. * @method static mixed get($key, $default = null)
  6. * @method static bool set($key, $value, $ttl = null)
  7. */
  8. class Redis
  9. {
  10. public static function getInstance()
  11. {
  12. $container = ApplicationContext::getContainer();
  13. return $container->get(\Hyperf\Redis\Redis::class);
  14. }
  15. public static function __callStatic($name, $arguments)
  16. {
  17. return self::getInstance()->$name(...$arguments);
  18. }
  19. }