Skip to content

Instantly share code, notes, and snippets.

@mkusher
Created January 25, 2017 20:26
Show Gist options
  • Save mkusher/981f28900f042d2ec7e19b59d9683269 to your computer and use it in GitHub Desktop.
Save mkusher/981f28900f042d2ec7e19b59d9683269 to your computer and use it in GitHub Desktop.
<?php
interface EventEmitter
{
public function emit(Event $e);
public function on(Event $e, callable $callback);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment