Exemplo n.º 1
0
 /**
  * Adds an event to the loop.
  *
  * This just calls the add method of the Event, and is really just a
  * shortcut.
  *
  * @return void
  */
 public function add(AbstractEvent $event)
 {
     $event->setBase($this);
     $this->events[] = $event;
 }