File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ - Fix for potential ` Undefined index: controllers_base_namespace. ` notice
6+
57## 2.1.0
68
79- Added a option (` controllers_base_namespace ` ) to strip away the controller base namespace for cleaner transaction names (#393 )
Original file line number Diff line number Diff line change @@ -108,7 +108,9 @@ protected function configureAndRegisterClient(): void
108108 {
109109 $ userConfig = $ this ->getUserConfig ();
110110
111- Integration::setControllersBaseNamespace ($ userConfig ['controllers_base_namespace ' ]);
111+ if (isset ($ userConfig ['controllers_base_namespace ' ])) {
112+ Integration::setControllersBaseNamespace ($ userConfig ['controllers_base_namespace ' ]);
113+ }
112114
113115 $ this ->app ->bind (ClientBuilderInterface::class, function () {
114116 $ basePath = base_path ();
You can’t perform that action at this time.
0 commit comments