Skip to content

Instantly share code, notes, and snippets.

@dgafka
Created March 12, 2022 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgafka/7f3840e07b9f6fdfd784fd704a4e551b to your computer and use it in GitHub Desktop.
Save dgafka/7f3840e07b9f6fdfd784fd704a4e551b to your computer and use it in GitHub Desktop.
scheduling-in-php-03.php
<?php
#[CommandHandler("registerUser")]
public function registerUser(#[Reference] EventBus $eventBus): void
{
// register user
$eventBus->publish(new UserWasRegistered(100));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment