Skip to content

Instantly share code, notes, and snippets.

@dgafka
Last active December 8, 2021 17:24
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/d20c89ce971476923d5124526b994bdf to your computer and use it in GitHub Desktop.
Save dgafka/d20c89ce971476923d5124526b994bdf to your computer and use it in GitHub Desktop.
Event Sourcing in PHP-01
class Product
{
private int $productId;
private float $price;
public function changePrice(float $price): void
{
$this->price = $price;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment