style: Pint 포맷팅 적용

This commit is contained in:
김보곤
2026-02-25 11:45:01 +09:00
parent 68b1622a4e
commit 9a7c548246
199 changed files with 1420 additions and 1083 deletions

View File

@@ -2,9 +2,9 @@
namespace App\Models\Barobill;
use App\Models\Tenants\Tenant;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use App\Models\Tenants\Tenant;
/**
* 카드 거래 분개 모델
@@ -67,7 +67,7 @@ public static function getByDateRange(int $tenantId, string $startDate, string $
$grouped = [];
foreach ($splits as $split) {
$key = $split->original_unique_key;
if (!isset($grouped[$key])) {
if (! isset($grouped[$key])) {
$grouped[$key] = [];
}
$grouped[$key][] = $split;