Exemplo n.º 1
0
 public function end()
 {
     if ($this->currentFilter instanceof Filter) {
         $this->currentFilter = null;
     } elseif ($this->currentFilter instanceof NestedFilter) {
         $this->currentFilter = $this->currentFilter->getParent();
     }
     return $this;
 }