We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 406c6f3 commit 94a63f1Copy full SHA for 94a63f1
lib/Command/Edit.php
@@ -229,7 +229,7 @@ private function yesOrNoNormalizer(string $input): ?bool {
229
}
230
231
private function stringNormalizer(?string $input): string {
232
- return $input ? trim($input) : '';
+ return ($input !== null) ? trim($input) : '';
233
234
235
private function autoCompleteNormalizer($input, array $autoComplete) {
0 commit comments