Skip to content

Instantly share code, notes, and snippets.

View g-alonso's full-sized avatar

. g-alonso

  • Buenos Aires, Argentina
View GitHub Profile
@g-alonso
g-alonso / EventGenerator.php
Created December 31, 2015 22:43 — forked from rosstuck/EventGenerator.php
Simple EventGenerator trait that you might use with domain events
<?php
trait EventGenerator
{
protected $pendingEvents = array();
protected function raise($event)
{
$this->pendingEvents[] = $event;
}