Ejemplo n.º 1
0
 function storeEvents($assert)
 {
     $store = new MemoryEventStore();
     $application = new CommandQueryApplication($store);
     $application->handle(new Foo2('that'));
     $assert($store->allEvents(), [new Fooed('that happened')]);
 }