Skip to content

Commit

Permalink
chore: Add missing space for invalid config exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
ollieread committed Dec 4, 2024
1 parent f576b1f commit 0205c95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptions/MisconfigurationException.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static function missingConfig(string $value, string $type, string $name):
*/
public static function invalidConfig(string $value, string $type, string $name): self
{
return new self('The provided value for \'' . $value . '\' is not valid for' . $type . ' [' . $name . ']');
return new self('The provided value for \'' . $value . '\' is not valid for ' . $type . ' [' . $name . ']');
}

/**
Expand Down

0 comments on commit 0205c95

Please sign in to comment.