diff --git a/src/Exceptions/MisconfigurationException.php b/src/Exceptions/MisconfigurationException.php index 59439a1..d5c29a6 100644 --- a/src/Exceptions/MisconfigurationException.php +++ b/src/Exceptions/MisconfigurationException.php @@ -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 . ']'); } /**