php-redis-client icon indicating copy to clipboard operation
php-redis-client copied to clipboard

PHP 8.0 deprecation notice

Open mxdpeep opened this issue 4 years ago • 1 comments
trafficstars

Required parameter $pivot follows optional parameter $after

/vendor/cheprasov/php-redis-client/src/RedisClient/Command/Traits/Version2x6/ListsCommandsTrait.php on line 94

see: https://php.watch/versions/8.0/deprecate-required-param-after-optional

public function linsert($key, $after = true, $pivot, $value) { return $this->returnCommand(['LINSERT'], $key, [$key, $after ? 'AFTER' : 'BEFORE', $pivot, $value]); }

mxdpeep avatar Dec 11 '20 14:12 mxdpeep

please update the code as mentioned in the other bug report

mxdpeep avatar Aug 06 '22 12:08 mxdpeep