return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
incr(...\
func_get_args());
} public function incrBy($key,
$value): \Redis|false|int
{ return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
incrBy(...\
func_get_args());
} public function incrByFloat($key,
$value): \Redis|false|float
{ return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
incrByFloat(...\
func_get_args());
} public function info(...
$sections): \Redis|array|false
{ return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
info(...\
func_get_args());
} public function isConnected(): bool
{ return ($this->lazyObjectState->realInstance
??= ($this->lazyObjectState->initializer
)())->
isConnected(...\
func_get_args());
}