Skip to content

Instantly share code, notes, and snippets.

@gecbla
Forked from rosstuck/EventGenerator.php
Created January 7, 2016 18:15
Show Gist options
  • Save gecbla/715097b05018292797ec to your computer and use it in GitHub Desktop.
Save gecbla/715097b05018292797ec to your computer and use it in GitHub Desktop.
Simple EventGenerator trait that you might use with domain events
<?php
trait EventGenerator
{
protected $pendingEvents = array();
protected function raise($event)
{
$this->pendingEvents[] = $event;
}
public function releaseEvents()
{
$events = $this->pendingEvents;
$this->pendingEvents = array();
return $events;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment