Lavender\Cloud\Sina\Cache\KvdbStore::decrement PHP Méthode

decrement() public méthode

Increment the value of an item in the cache.
public decrement ( string $key, mixed $value = 1 ) : integer
$key string
$value mixed
Résultat integer
    public function decrement($key, $value = 1)
    {
        return $this->incrementOrDecrement($key, $value, '-');
    }