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
2626 /**
2727 * List of configuration options that are Laravel specific and should not be sent to the base PHP SDK.
2828 */
29- private const LARAVEL_SPECIFIC_OPTIONS = [
29+ protected const LARAVEL_SPECIFIC_OPTIONS = [
3030 // We do not want these settings to hit the PHP SDK because they are Laravel specific and the PHP SDK will throw errors
3131 'tracing ' ,
3232 'breadcrumbs ' ,
@@ -143,7 +143,7 @@ protected function configureAndRegisterClient(): void
143143 $ basePath = base_path ();
144144 $ userConfig = $ this ->getUserConfig ();
145145
146- foreach (self ::LARAVEL_SPECIFIC_OPTIONS as $ laravelSpecificOptionName ) {
146+ foreach (static ::LARAVEL_SPECIFIC_OPTIONS as $ laravelSpecificOptionName ) {
147147 unset($ userConfig [$ laravelSpecificOptionName ]);
148148 }
149149
You can’t perform that action at this time.
0 commit comments