@@ -5,7 +5,7 @@ |
||
5 | 5 | { |
6 | 6 | public static function constructWithSettingPath(string $pathToConfigSettingInTree) : ConfigTreeParamNotSet |
7 | 7 | { |
8 | - $message = 'Config setting "' . $pathToConfigSettingInTree . '" not set.'; |
|
8 | + $message = 'Config setting "'.$pathToConfigSettingInTree.'" not set.'; |
|
9 | 9 | return new static($message); |
10 | 10 | } |
11 | 11 | } |
@@ -5,7 +5,7 @@ |
||
5 | 5 | { |
6 | 6 | public static function constructWithPath(string $path) : FileNotReadable |
7 | 7 | { |
8 | - $message = 'Config file "' . $path . '" could not be read'; |
|
8 | + $message = 'Config file "'.$path.'" could not be read'; |
|
9 | 9 | return new static($message); |
10 | 10 | } |
11 | 11 | } |
@@ -5,7 +5,7 @@ |
||
5 | 5 | { |
6 | 6 | public static function constructWithFilePath(string $path) : FileFormatNotParsable |
7 | 7 | { |
8 | - $message = 'Config file "' . $path . '" is not of a format that can be parsed. Try .ini, .php, .json, or .yml.'; |
|
8 | + $message = 'Config file "'.$path.'" is not of a format that can be parsed. Try .ini, .php, .json, or .yml.'; |
|
9 | 9 | return new static($message); |
10 | 10 | } |
11 | 11 | } |