From 41eaf7c6df2b9f76a8ab070d6d873c6d092bbef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Tue, 22 Apr 2025 10:36:45 +0300 Subject: [PATCH] Update gold rate naming convention in FetchGoldRates job - Changed the abbreviation for "22AYARBILEZIK" from "YIB" to "YIA" to improve clarity and consistency in the naming convention for gold rates. This change enhances the accuracy of the data representation in the FetchGoldRates job within the Truncgil Finance application. --- app/Jobs/FetchGoldRates.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/FetchGoldRates.php b/app/Jobs/FetchGoldRates.php index 26014bc..ab6456b 100644 --- a/app/Jobs/FetchGoldRates.php +++ b/app/Jobs/FetchGoldRates.php @@ -65,7 +65,7 @@ class FetchGoldRates implements ShouldQueue // Kısaltma işlemleri $nameGold = str_replace("14AYARBILEZIK", "ODB", $nameGold); $nameGold = str_replace("18AYARBILEZIK", "OSB", $nameGold); - $nameGold = str_replace("22AYARBILEZIK", "YIB", $nameGold); + $nameGold = str_replace("22AYARBILEZIK", "YIA", $nameGold); $nameGold = str_replace("GRAMALTIN", "GRA", $nameGold); $nameGold = str_replace("GRAMPLATIN", "GPL", $nameGold); $nameGold = str_replace("GRAMHASALTIN", "HAS", $nameGold);