From bb07cdf64cf92c4c9f1e7d9d47ef8d17a520adff Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sun, 29 Oct 2023 03:13:05 +0000 Subject: [PATCH] Apply fixes from StyleCI --- gatherling/api_lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gatherling/api_lib.php b/gatherling/api_lib.php index 9bb720b9f..30df98bcf 100644 --- a/gatherling/api_lib.php +++ b/gatherling/api_lib.php @@ -187,8 +187,8 @@ function repr_json_deck($deck) if ($deck->id != 0) { $json['found'] = 1; $json = populate($json, $deck, ['playername', 'name', 'archetype', 'notes']); - $json['maindeck'] = (object)$deck->maindeck_cards; - $json['sideboard'] = (object)$deck->sideboard_cards; + $json['maindeck'] = (object) $deck->maindeck_cards; + $json['sideboard'] = (object) $deck->sideboard_cards; } else { $json['found'] = 0; }