Overtrue\LaravelWechat\CacheBridge::delete PHP Method

delete() public method

Deletes a cache entry.
public delete ( string $id ) : boolean
$id string The cache id.
return boolean TRUE if the cache entry was successfully deleted, FALSE otherwise. Deleting a non-existing entry is considered successful.
    public function delete($id)
    {
        return Cache::forget($id);
    }