Wilcard Listeners
Wildcard Listeners allow you to listen to ANY event. When an event is emitted, wildcard listeners will be invoked AFTER the normal events are.
Registering Wildcard Listeners
$emitter->addListener('*', new CustomWildcardListener);