Monolog\Handler\AbstractHandler::getBubble PHP Method

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.
    public function getBubble()
    {
        return $this->bubble;
    }

Usage Example

 public function __construct(AbstractHandler $handler, \Bubble\CatchBubble $catchBubble)
 {
     parent::__construct($handler->getLevel(), $handler->getBubble());
     $this->handler = $handler;
     $this->catchBubble = $catchBubble;
 }