Skip to content

Commit 7efec45

Browse files
authored
Fix syntax error in notification ID assignment (#13)
1 parent e972064 commit 7efec45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/notification-center/developers/_index.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class SomeService
2626

2727
public function sendMessage(): void
2828
{
29-
$notificationId = 42: // Usually, some module setting of yours where the user can select the desired notification
29+
$notificationId = 42; // Usually, some module setting of yours where the user can select the desired notification
3030
$tokens = [
3131
'firstname' => 'value1',
3232
'lastname' => 'value2',
@@ -273,4 +273,4 @@ sure this is shown e.g. in the `TokenContext::Email` context, this is your event
273273

274274
This event is dispatched every time a `Parcel` was sent. It can be used to implement e.g. logging, retry logic etc.
275275

276-
[DI_Autoconfigure]: https://symfony.com/doc/current/service_container.html#the-autoconfigure-option
276+
[DI_Autoconfigure]: https://symfony.com/doc/current/service_container.html#the-autoconfigure-option

0 commit comments

Comments
 (0)