Skip to content

Commit

Permalink
fix: add space in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sitepark-veltrup committed Apr 29, 2024
1 parent 766787a commit 7691a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Command/Io/TypifiedInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function getStringOption(string $name): string
$value = $this->input->getOption($name);
if (!is_string($value)) {
throw new InvalidArgumentException(
'option' . $name . ' must be a string: ' . $value
'option ' . $name . ' must be a string: ' . $value
);
}
return $value;
Expand Down

0 comments on commit 7691a83

Please sign in to comment.