File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ before doing major upgrade!
8
8
9
9
## CHANGE LOG ##
10
10
11
+ * @dev
12
+ * Fixed failing ` ServiceProvider ` (reported by Efriandika Pratama).
13
+ * Corrected documentation and usage examples.
14
+
11
15
* v9.0.0 (2020-10-17)
12
16
* ** BACKWARD INCOMPATIBLE CHANGES** ([ more info] ( docs/compatibility.md ) )
13
17
* [ RB-156] Added logic to deal with directly returned objects or arrays.
Original file line number Diff line number Diff line change 3
3
* Disable return type hint inspection as we do not have it specified in that
4
4
* class for a purpose. The base class is also not having return type hints.
5
5
*
6
- * @noinspection ReturnTypeCanBeDeclaredInspection
6
+ * @noinspection RAeturnTypeCanBeDeclaredInspection
7
7
*/
8
8
9
9
declare (strict_types=1 );
@@ -37,7 +37,7 @@ class ResponseBuilderServiceProvider extends ServiceProvider
37
37
public function register ()
38
38
{
39
39
foreach ($ this ->config_files as $ file ) {
40
- $ this ->mergeConfigFrom (__DIR__ . "/../config/ {$ file }" , RB ::CONF_CONFIG );
40
+ $ this ->mergeConfigFrom (__DIR__ . "/../config/ {$ file }" , ResponseBuilder ::CONF_CONFIG );
41
41
}
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments