예제 #1
0
 /**
  * Get the underlying Monolog instance.
  *
  * @return \Monolog\Logger
  */
 public function getMonolog() : MonologLogger
 {
     return $this->handlerParser->getMonolog();
 }
예제 #2
0
 public function testGetMonolog()
 {
     $handler = new HandlerParser($this->mock(Logger::class));
     $this->assertInstanceOf(Logger::class, $handler->getMonolog());
 }