class Dry::CLI::CommandRegistry::LookupResult
@api private
@since 0.1.0
Result of a registry lookup
def after_callbacks
- Api: - private
Other tags:
- Since: - 0.2.0
def after_callbacks @node.after_callbacks end
def before_callbacks
- Api: - private
Other tags:
- Since: - 0.2.0
def before_callbacks @node.before_callbacks end
def children
- Api: - private
Other tags:
- Since: - 0.1.0
def children @node.children end
def command
- Api: - private
Other tags:
- Since: - 0.1.0
def command @node.command end
def found?
- Api: - private
Other tags:
- Since: - 0.1.0
def found? @found end
def initialize(node, arguments, names, found)
- Api: - private
Other tags:
- Since: - 0.1.0
def initialize(node, arguments, names, found) @node = node @arguments = arguments @names = names @found = found end