DebugKit\Cache\Engine\DebugEngine::decrement PHP Method

decrement() public method

{@inheritDoc}
public decrement ( $key, $offset = 1 )
    public function decrement($key, $offset = 1)
    {
        $this->_track('write');
        DebugTimer::start('Cache.decrement ' . $key);
        $result = $this->_engine->decrement($key, $offset);
        DebugTimer::stop('Cache.decrement ' . $key);
        return $result;
    }