1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-10 07:06:40 +02:00

Add FallbackGroupHandler

This commit is contained in:
Malachi Soord
2019-08-13 17:55:34 +02:00
parent 2e3c369667
commit ab236865a7
5 changed files with 236 additions and 13 deletions

View File

@@ -136,16 +136,3 @@ class WhatFailureGroupHandlerTest extends TestCase
$this->assertTrue($records[0]['extra']['foo']);
}
}
class ExceptionTestHandler extends TestHandler
{
/**
* {@inheritdoc}
*/
public function handle(array $record): bool
{
parent::handle($record);
throw new \Exception("ExceptionTestHandler::handle");
}
}