Fuel\Event\Listener::stopPropagation PHP Method

stopPropagation() public method

Prevents further events from being fired.
public stopPropagation ( ) : object
return object $this
    public function stopPropagation()
    {
        $this->propagate = false;
        return $this;
    }