This commit is contained in:
Cüneyt Şentürk 2022-11-22 12:51:56 +03:00
parent 3ef1ad1502
commit fba6ff7318
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ class Bugsnag
{ {
app('bugsnag')->setAppVersion(version('short')); app('bugsnag')->setAppVersion(version('short'));
$tags = $this->getTrackerTags(); $tags = self::getTrackerTags();
app('bugsnag')->registerCallback(function ($report) use($tags) { app('bugsnag')->registerCallback(function ($report) use($tags) {
$report->setMetaData([ $report->setMetaData([

View File

@ -16,7 +16,7 @@ class Sentry
{ {
$event->setRelease(version('short')); $event->setRelease(version('short'));
$tags = $this->getTrackerTags(); $tags = self::getTrackerTags();
$event->setTags($tags); $event->setTags($tags);