Airship\Engine\Cache\File::delete PHP Method

delete() public method

Delete a cache entry
public delete ( string $key ) : boolean
$key string
return boolean
    public function delete(string $key) : bool
    {
        $path = $this->getRelativePath($key);
        if (\file_exists($path)) {
            return \unlink($path);
        }
        return false;
    }