예제 #1
0
파일: Komponent.php 프로젝트: koolkode/k2
 public function bootEventSubscriptions(ContainerInterface $container, EventDispatcherInterface $dispatcher)
 {
     $container->eachMarked(function (EventListener $event, BindingInterface $binding) use($container, $dispatcher) {
         $dispatcher->attach($event->event, new BindingListener($container, $binding, $event->method, $event->lazy), $event->priority);
     });
 }