Skip to content

Commit 5680c0f

Browse files
committed
Update notifications.md
1 parent 0cb1ca5 commit 5680c0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/docs/desktop/1/the-basics/notifications.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Notification::title('Hello from NativePHP')
4343
### Notification Reference
4444

4545
To keep track of different notifications, each notification gets a reference once created. You can manually set a reference using the `reference()` method.
46-
By default, the current unix timestamp is used as the reference. Once the notification is shown, the reference is stored in the notification class.
46+
By default, a unique id is used as the reference. Once the notification is shown, the reference is stored in the notification class.
4747

4848
```
4949
$notification = Notification::title('Hello from NativePHP')->show();
@@ -64,7 +64,7 @@ Notification::title('Hello from NativePHP')
6464
### Notification Reference
6565

6666
You can use the `reference()` method to set an event identifier and track which notification triggered a certain event.
67-
This reference will be sent along with any event triggered by the notification. By default, the current unix timestamp is used as the reference.
67+
This reference will be sent along with any event triggered by the notification. By default, a unique id is used as the reference.
6868

6969
```php
7070
Notification::title('Hello from NativePHP')

0 commit comments

Comments
 (0)