This commit is contained in:
Cüneyt Şentürk
2022-11-22 15:00:33 +03:00
parent fba6ff7318
commit 87999ed564
4 changed files with 5 additions and 5 deletions

View File

@ -87,7 +87,7 @@ class Trackers extends Component
return $tags;
}
return $this->getTrackerTags();
return static::getTrackerTags();
}
public function getParams($params)
@ -105,7 +105,7 @@ class Trackers extends Component
case 'sentry':
$params = [
'release' => version('short'),
'traces_sample_rate' => $this->sentryTracesSampleRate(),
'traces_sample_rate' => static::sentryTracesSampleRate(),
];
break;
}