File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ See [compatibility docs](docs/compatibility.md) for details about backward compa
6
6
7
7
## CHANGE LOG ##
8
8
9
+ * dev
10
+ * Fixed incorrect exception message thrown in case of incomplete ` classes ` config mapping (@dragonfire1119 )
11
+
9
12
* v3.0.1 (2017-02-23)
10
13
* Updated ` composer.json ` to list ` laravel/framework ` among requirements
11
14
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ protected static function getClassesMapping()
59
59
foreach ($ classes as $ class_name => $ class_config ) {
60
60
foreach ($ mandatory_keys as $ key_name ) {
61
61
if (!array_key_exists ($ key_name , $ class_config )) {
62
- throw new \RuntimeException (' CONFIG: Missing " {$key_name}" for " {$class_name}" mapping ' );
62
+ throw new \RuntimeException (" CONFIG: Missing ' {$ key_name }' for ' {$ class_name }' mapping" );
63
63
}
64
64
}
65
65
}
You can’t perform that action at this time.
0 commit comments