MatthiasMullie\Scrapbook\Psr16\SimpleCache::delete PHP Method

delete() public method

public delete ( $key )
    public function delete($key)
    {
        if (!is_string($key)) {
            throw new InvalidArgumentException('Invalid key: ' . serialize($key) . '. Must be string.');
        }
        return $this->store->delete($key);
    }