getBubble() 공개 메소드

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