getBubble() public method

Gets the bubbling behavior.
public getBubble ( ) : boolean
return boolean True means that bubbling is not permitted. False means that this handler allows bubbling.
Ejemplo n.º 1
0
 public function __construct(AbstractHandler $handler, \Bubble\CatchBubble $catchBubble)
 {
     parent::__construct($handler->getLevel(), $handler->getBubble());
     $this->handler = $handler;
     $this->catchBubble = $catchBubble;
 }