Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/Commando/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -495,10 +495,11 @@ public function parse()
}
}

// See if our options have what they require
// See if our options have what they require.
// But only do so if the option is actually used
foreach ($this->options as $option) {
$needs = $option->hasNeeds($this->options);
if ($needs !== true) {
if ($needs !== true && array_key_exists($option->getName(), $keyvals)) {
throw new \InvalidArgumentException(
'Option "' . $option->getName() . '" does not have required option(s): ' . implode(', ', $needs)
);
Expand Down