hyperf-ext / jwt

The Hyperf JWT package.
MIT License
52 stars 23 forks source link

refresh_ttl 设置为 null 会报错 #13

Closed teg1c closed 3 years ago

teg1c commented 3 years ago

HyperfExt\Jwt\Blacklist 这个类初始化 第三个参数只能为 int

public function __construct(StorageInterface $storage, int $gracePeriod, int $refreshTtl)
    {
        $this->storage = $storage;
        $this->gracePeriod = $gracePeriod;
        $this->refreshTtl = $refreshTtl;
    }
ericyzhu commented 3 years ago

14