Completed
Push — master ( 876b83...e6825f )
by Sam
08:40
created
Category
src/ConfigTree/Exception/ConfigTreeParamNotSet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/ConfigTree/Exception/FileNotReadable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/ConfigTree/Exception/FileFormatNotParsable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.