diff --git a/Library/Homebrew/env_config.rbi b/Library/Homebrew/env_config.rbi index f52d381c76..1f652606a7 100644 --- a/Library/Homebrew/env_config.rbi +++ b/Library/Homebrew/env_config.rbi @@ -1,9 +1,6 @@ # typed: strict module Homebrew::EnvConfig - sig { returns(T.nilable(String)) } - def self.additional_google_analytics_id; end - sig { returns(T.nilable(String)) } def self.all_proxy; end @@ -178,9 +175,6 @@ module Homebrew::EnvConfig sig { returns(T::Boolean) } def self.no_github_api?; end - sig { returns(T::Boolean) } - def self.no_google_analytics?; end - sig { returns(T::Boolean) } def self.no_insecure_redirect?; end diff --git a/Library/Homebrew/sorbet/rbi/parlour.rbi b/Library/Homebrew/sorbet/rbi/parlour.rbi index e3241474aa..5151b1402a 100644 --- a/Library/Homebrew/sorbet/rbi/parlour.rbi +++ b/Library/Homebrew/sorbet/rbi/parlour.rbi @@ -77,6 +77,9 @@ class Formula sig { params(args: T.untyped, options: T.untyped, block: T.untyped).returns(T.untyped) } def deps(*args, **options, &block); end + sig { params(args: T.untyped, options: T.untyped, block: T.untyped).returns(T.untyped) } + def declared_deps(*args, **options, &block); end + sig { params(args: T.untyped, options: T.untyped, block: T.untyped).returns(T.untyped) } def uses_from_macos_elements(*args, **options, &block); end