FOF30\Utils\Buffer::unlink PHP Method

    public function unlink($path)
    {
        $url = parse_url($path);
        $name = $url['host'];
        if (isset(static::$buffers[$name])) {
            unset(static::$buffers[$name]);
        }
    }