Monolog\Handler\AbstractHandler::getBubble PHP 메소드

getBubble() 공개 메소드

Gets the bubbling behavior.
public getBubble ( ) : boolean
리턴 boolean True means that bubbling is not permitted. False means that this handler allows bubbling.
    public function getBubble()
    {
        return $this->bubble;
    }

Usage Example

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