Skip to content

Instantly share code, notes, and snippets.

@dgafka
Created December 8, 2021 17:25
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/a11c1b3cf79be8e899b7d74a89ce7390 to your computer and use it in GitHub Desktop.
Save dgafka/a11c1b3cf79be8e899b7d74a89ce7390 to your computer and use it in GitHub Desktop.
Event Sourcing PHP 02
class Product
{
private int $productId;
private float $price;
public function changePrice(float $price): array
{
return [new PriceWasChanged($this->productId, $price)];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment