Example #1
0
 /**
  * {@inheritdoc}
  */
 public function close()
 {
     parent::close();
     if (true === $this->mustRotate) {
         $this->rotate();
     }
 }
 /**
  * @covers Monolog\Handler\StreamHandler::close
  */
 public function testCloseKeepsExternalHandlersOpen()
 {
     $handle = fopen('php://memory', 'a+');
     $handler = new StreamHandler($handle);
     $this->assertTrue(is_resource($handle));
     $handler->close();
     $this->assertTrue(is_resource($handle));
 }