Pop\Cache\Cache::remove PHP Method

remove() public method

Method to delete a value in cache.
public remove ( string $id ) : void
$id string
return void
    public function remove($id)
    {
        $this->adapter->remove($id);
    }