Skip to content

Instantly share code, notes, and snippets.

@rosstuck
Created March 20, 2014 16:04
Show Gist options
  • Save rosstuck/9667242 to your computer and use it in GitHub Desktop.
Save rosstuck/9667242 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