Last active
March 14, 2022 18:38
-
-
Save dgafka/75df07c93d6fb1965bc1709dd0e7a426 to your computer and use it in GitHub Desktop.
scheduling-in-php-04.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
#[Asynchronous("notifications")] | |
#[Delayed(50000)] | |
#[EventHandler(endpointId: "welcomeEmail")] | |
public function sendWelcomeNotificationlWhen(UserWasRegistered $event): void | |
{ | |
// handle welcome notification | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment