builders[] = $builder; return $this; } public function rewind() { $this->position = 0; } /** * @return BaseEventBuilder */ public function current() { return $this->builders[$this->position]; } public function key() { return $this->position; } public function next() { ++$this->position; } public function valid() { return isset($this->builders[$this->position]); } }