MatthiasMullie\Scrapbook\Adapters\Couchbase::delete PHP Method

delete() public method

public delete ( $key )
    public function delete($key)
    {
        try {
            $result = $this->client->remove($key);
        } catch (\CouchbaseException $e) {
            return false;
        }
        return !$result->error;
    }