From fba6ff7318463c09e418a7bb93bb1b448cb5e7b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Tue, 22 Nov 2022 12:51:56 +0300 Subject: [PATCH] typo.. --- app/Exceptions/Trackers/Bugsnag.php | 2 +- app/Exceptions/Trackers/Sentry.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Exceptions/Trackers/Bugsnag.php b/app/Exceptions/Trackers/Bugsnag.php index 9e5f943bd..df340570a 100644 --- a/app/Exceptions/Trackers/Bugsnag.php +++ b/app/Exceptions/Trackers/Bugsnag.php @@ -13,7 +13,7 @@ class Bugsnag { app('bugsnag')->setAppVersion(version('short')); - $tags = $this->getTrackerTags(); + $tags = self::getTrackerTags(); app('bugsnag')->registerCallback(function ($report) use($tags) { $report->setMetaData([ diff --git a/app/Exceptions/Trackers/Sentry.php b/app/Exceptions/Trackers/Sentry.php index 1258c2c20..98cdde0fb 100644 --- a/app/Exceptions/Trackers/Sentry.php +++ b/app/Exceptions/Trackers/Sentry.php @@ -16,7 +16,7 @@ class Sentry { $event->setRelease(version('short')); - $tags = $this->getTrackerTags(); + $tags = self::getTrackerTags(); $event->setTags($tags);