File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ class ExportGame implements ShouldQueue
16
16
17
17
public static array $ header = [
18
18
'Date ' ,
19
+ 'SeasonNumber ' ,
20
+ 'SeasonVersion ' ,
19
21
'Player ' ,
20
22
'MatchId ' ,
21
23
'Map ' ,
@@ -72,6 +74,8 @@ public function handle(): array
72
74
73
75
$ this ->data [] = [
74
76
$ this ->game ->occurred_at ->toIso8601ZuluString (),
77
+ $ this ->game ->season_number ,
78
+ $ this ->game ->season_version ,
75
79
$ gamePlayer ->player ->gamertag ,
76
80
$ this ->game ->uuid ,
77
81
$ this ->game ->map ->name ,
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ class ExportGameHistory implements ShouldQueue
22
22
23
23
public static array $ header = [
24
24
'Date ' ,
25
+ 'SeasonNumber ' ,
26
+ 'SeasonVersion ' ,
25
27
'Player ' ,
26
28
'MatchId ' ,
27
29
'Map ' ,
@@ -128,6 +130,8 @@ public function handle(): array
128
130
129
131
$ this ->data [] = [
130
132
$ gamePlayer ->game ->occurred_at ->toDateTimeString (),
133
+ $ gamePlayer ->game ->season_number ,
134
+ $ gamePlayer ->game ->season_version ,
131
135
$ gamePlayer ->player ->gamertag ,
132
136
$ gamePlayer ->game ->uuid ,
133
137
$ gamePlayer ->game ->map ->name ,
You can’t perform that action at this time.
0 commit comments