From f2482e4ace1f039f94b808e6087b7de2056d209b Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 7 Aug 2024 06:04:37 +0200 Subject: [PATCH] Remove comments --- app/Support/Steam.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Support/Steam.php b/app/Support/Steam.php index ebae5cb468..57ee9bed27 100644 --- a/app/Support/Steam.php +++ b/app/Support/Steam.php @@ -269,7 +269,7 @@ class Steam */ public function balanceInRangeConverted(Account $account, Carbon $start, Carbon $end, TransactionCurrency $native): array { - Log::warning(sprintf('Deprecated method %s, do not use.', __METHOD__)); +// Log::warning(sprintf('Deprecated method %s, do not use.', __METHOD__)); $cache = new CacheProperties(); $cache->addProperty($account->id); $cache->addProperty('balance-in-range-converted'); @@ -541,7 +541,7 @@ class Steam */ public function balancesByAccounts(Collection $accounts, Carbon $date): array { - Log::warning(sprintf('Deprecated method %s, do not use.', __METHOD__)); +// Log::warning(sprintf('Deprecated method %s, do not use.', __METHOD__)); $ids = $accounts->pluck('id')->toArray(); // cache this property. $cache = new CacheProperties(); @@ -572,7 +572,7 @@ class Steam */ public function balancesByAccountsConverted(Collection $accounts, Carbon $date): array { - Log::warning(sprintf('Deprecated method %s, do not use.', __METHOD__)); +// Log::warning(sprintf('Deprecated method %s, do not use.', __METHOD__)); $ids = $accounts->pluck('id')->toArray(); // cache this property. $cache = new CacheProperties(); @@ -606,7 +606,7 @@ class Steam */ public function balancesPerCurrencyByAccounts(Collection $accounts, Carbon $date): array { - Log::warning(sprintf('Deprecated method %s, do not use.', __METHOD__)); +// Log::warning(sprintf('Deprecated method %s, do not use.', __METHOD__)); $ids = $accounts->pluck('id')->toArray(); // cache this property. $cache = new CacheProperties();