
Add the necessary changes for Sorbet `typed: strict` in more files. Co-authored-by: Ruoyu Zhong <zhongruoyu@outlook.com>
17 lines
360 B
Ruby
17 lines
360 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "cask/artifact/abstract_uninstall"
|
|
|
|
module Cask
|
|
module Artifact
|
|
# Artifact corresponding to the `zap` stanza.
|
|
class Zap < AbstractUninstall
|
|
sig { params(options: T.anything).void }
|
|
def zap_phase(**options)
|
|
dispatch_uninstall_directives(**options)
|
|
end
|
|
end
|
|
end
|
|
end
|