Skip to content

Commit fa58b21

Browse files
committed
Replace live image URLs with example.com URLs
1 parent f63ff9f commit fa58b21

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/cloud-messaging.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ are both optional.
280280
281281
$title = 'My Notification Title';
282282
$body = 'My Notification Body';
283-
$imageUrl = 'https://picsum.photos/400/200';
283+
$imageUrl = 'https://example.com/image.jpg';
284284
285285
$notification = Notification::fromArray([
286286
'title' => $title,
@@ -293,7 +293,7 @@ are both optional.
293293
$changedNotification = $notification
294294
->withTitle('Changed title')
295295
->withBody('Changed body')
296-
->withImageUrl('https://picsum.photos/200/400');
296+
->withImageUrl('https://example.com/image.jpg');
297297
298298
Once you have created a message with one of the methods described below,
299299
you can attach the notification to it:

0 commit comments

Comments
 (0)