codeigniter4 / queue

Queues for the CodeIgniter 4 framework
https://queue.codeigniter.com/
MIT License
44 stars 12 forks source link

refactor: replace loose comparisons #22

Closed kenjis closed 8 months ago

kenjis commented 8 months ago

Description

Checklist:

kenjis commented 8 months ago

phpstan-strict-rules did not report errors.

$this->predis->zrangebyscore() returns only array. But $this->redis->zRangeByScore() returns array|false|Redis. That is the reason?

michalsn commented 8 months ago

Yes, most likely. Thanks.