Lavender\Cloud\Sina\Cache\KvdbStore::increment PHP Метод

increment() публичный Метод

Increment the value of an item in the cache.
public increment ( string $key, mixed $value = 1 ) : integer
$key string
$value mixed
Результат integer
    public function increment($key, $value = 1)
    {
        return $this->incrementOrDecrement($key, $value, '+');
    }