You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecated: Optional parameter $after declared before required parameter $value is implicitly treated as a required parameter in C:\wamp\www\vendor\cheprasov\php-redis-client\src\RedisClient\Command\Traits\Version2x6\ListsCommandsTrait.php on line 94 public function linsert($key, $after = true, $pivot, $value) {
remove "= true"
PHP 8.1.1
php-redis-client: latest version
The text was updated successfully, but these errors were encountered:
ethanhann
added a commit
to ethanhann/php-redis-client
that referenced
this issue
Jun 4, 2022
This is more just a quick fix to resolve issue cheprasov#81. Really, $after should be at the end of the argument list (as $pivot and $value should always have arguments) or $after shouldn't have a default value, but both of those changes would break backward compatibility.
Deprecated: Optional parameter $after declared before required parameter $value is implicitly treated as a required parameter in C:\wamp\www\vendor\cheprasov\php-redis-client\src\RedisClient\Command\Traits\Version2x6\ListsCommandsTrait.php on line 94 public function linsert($key, $after = true, $pivot, $value) { remove "= true"
Thanks a lot.
Yep, unfortunately, I have not time anymore for free maintenance open source project. Sorry.
Please feel free to use another libraries for using redis.
Regards,
Alexander
so we need to clone the repo and maintain it on our own 😒
Deprecated: Optional parameter $after declared before required parameter $value is implicitly treated as a required parameter in C:\wamp\www\vendor\cheprasov\php-redis-client\src\RedisClient\Command\Traits\Version2x6\ListsCommandsTrait.php on line 94
public function linsert($key, $after = true, $pivot, $value) {
remove "= true"
PHP 8.1.1
php-redis-client: latest version
The text was updated successfully, but these errors were encountered: