File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ class Notification extends Message
11
11
private $ body ;
12
12
private $ badge ;
13
13
private $ icon ;
14
+ private $ image ;
14
15
private $ color ;
15
16
private $ sound ;
16
17
private $ clickAction ;
@@ -43,6 +44,12 @@ public function setBody($body)
43
44
return $ this ;
44
45
}
45
46
47
+ public function setImage ($ image )
48
+ {
49
+ $ this ->image = $ image ;
50
+ return $ this ;
51
+ }
52
+
46
53
/**
47
54
* iOS only, will add smal red bubbles indicating the number of notifications to your apps icon
48
55
*
@@ -155,7 +162,8 @@ public function hasNotificationData()
155
162
$ this ->titleLocArgs ||
156
163
$ this ->bodyLocKey ||
157
164
$ this ->bodyLocArgs ||
158
- $ this ->androidChannelId
165
+ $ this ->androidChannelId ||
166
+ $ this ->image
159
167
;
160
168
}
161
169
@@ -175,6 +183,9 @@ public function jsonSerialize()
175
183
if ($ this ->icon ) {
176
184
$ jsonData ['icon ' ] = $ this ->icon ;
177
185
}
186
+ if ($ this ->image ) {
187
+ $ jsonData ['image ' ] = $ this ->image ;
188
+ }
178
189
if ($ this ->color ) {
179
190
$ jsonData ['color ' ] = $ this ->color ;
180
191
}
You can’t perform that action at this time.
0 commit comments