Exception: Dependabot::Composer::UpdateChecker::VersionResolver::MissingExtensions

Inherits:
StandardError
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/dependabot/composer/update_checker/version_resolver.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(extensions) ⇒ MissingExtensions

Returns a new instance of MissingExtensions.



30
31
32
33
# File 'lib/dependabot/composer/update_checker/version_resolver.rb', line 30

def initialize(extensions)
  @extensions = T.let(extensions, T::Array[T::Hash[Symbol, T.untyped]])
  super
end

Instance Attribute Details

#extensionsObject (readonly)

Returns the value of attribute extensions.



27
28
29
# File 'lib/dependabot/composer/update_checker/version_resolver.rb', line 27

def extensions
  @extensions
end