php-redis-client
php-redis-client copied to clipboard
PHP 8.0 deprecation notice
trafficstars
Required parameter $pivot follows optional parameter $after
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]); }
please update the code as mentioned in the other bug report