File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class ServiceProvider extends BaseServiceProvider
26
26
/**
27
27
* List of configuration options that are Laravel specific and should not be sent to the base PHP SDK.
28
28
*/
29
- private const LARAVEL_SPECIFIC_OPTIONS = [
29
+ protected const LARAVEL_SPECIFIC_OPTIONS = [
30
30
// We do not want these settings to hit the PHP SDK because they are Laravel specific and the PHP SDK will throw errors
31
31
'tracing ' ,
32
32
'breadcrumbs ' ,
@@ -143,7 +143,7 @@ protected function configureAndRegisterClient(): void
143
143
$ basePath = base_path ();
144
144
$ userConfig = $ this ->getUserConfig ();
145
145
146
- foreach (self ::LARAVEL_SPECIFIC_OPTIONS as $ laravelSpecificOptionName ) {
146
+ foreach (static ::LARAVEL_SPECIFIC_OPTIONS as $ laravelSpecificOptionName ) {
147
147
unset($ userConfig [$ laravelSpecificOptionName ]);
148
148
}
149
149
You can’t perform that action at this time.
0 commit comments