Skip to content

Commit

Permalink
Merge branch 'release/v0.9.8' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
betterthanclay committed Dec 6, 2022
2 parents b6a9f11 + d592486 commit da60b89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.9.8 (2022-12-06)
* Fixed list argument modifier

## v0.9.7 (2022-11-28)
* Added platform adapter structure
* Removed Systemic dependency
Expand Down
2 changes: 1 addition & 1 deletion src/Terminus/Command/Definition.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ private function validate(
}
}
} else {
if (!is_array($output[$name])) {
if (!is_array($output[$name] ?? null)) {
$output[$name] = [];
}

Expand Down

0 comments on commit da60b89

Please sign in to comment.