mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-05 12:47:39 +02:00
Add Record/Level/LevelName type aliases and improve phpstan type coverage to level 6
This commit is contained in:
@@ -54,8 +54,8 @@ class ErrorHandlerTest extends \PHPUnit\Framework\TestCase
|
||||
public function fatalHandlerProvider()
|
||||
{
|
||||
return [
|
||||
[null, 10, str_repeat(' ', 1024 * 10), null],
|
||||
[E_ALL, 15, str_repeat(' ', 1024 * 15), E_ALL],
|
||||
[null, 10, str_repeat(' ', 1024 * 10), LogLevel::ALERT],
|
||||
[LogLevel::DEBUG, 15, str_repeat(' ', 1024 * 15), LogLevel::DEBUG],
|
||||
];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user