1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-21 12:22:21 +02:00

Merge branch '2.x'

This commit is contained in:
Jordi Boggiano
2023-02-04 16:23:13 +01:00
10 changed files with 138 additions and 31 deletions

View File

@@ -11,6 +11,7 @@
namespace Monolog\Processor;
use Monolog\Level;
use Monolog\Test\TestCase;
class PsrLogMessageProcessorTest extends TestCase
@@ -66,6 +67,7 @@ class PsrLogMessageProcessorTest extends TestCase
[[1, 2, 3], 'array[1,2,3]'],
[['foo' => 'bar'], 'array{"foo":"bar"}'],
[stream_context_create(), '[resource]'],
[Level::Info, Level::Info->value],
];
}
}