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

decrement() public méthode

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