| 1 | <?php |
||
| 20 | final class Projector |
||
| 21 | { |
||
| 22 | private $eventHandlers; |
||
| 23 | private static $instance = null; |
||
| 24 | |||
| 25 | public static function instance() : self |
||
| 33 | |||
| 34 | private function __construct() |
||
| 38 | |||
| 39 | public function __clone() |
||
| 43 | |||
| 44 | public function register(array $eventHandlers) |
||
| 50 | |||
| 51 | private function add(EventHandler $eventHandler) |
||
| 55 | |||
| 56 | public function project(DomainEventCollection $events) : void |
||
| 64 | } |
||
| 65 |