From eac0c22ad27910ac97a5c33eb588257a0993487f Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 9 Jun 2022 10:40:17 +0200 Subject: [PATCH] Mark TestCase internal until PHPStorm handles this better, fixes #1677 --- src/Monolog/Test/TestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Monolog/Test/TestCase.php b/src/Monolog/Test/TestCase.php index c4e42496..bc0b425e 100644 --- a/src/Monolog/Test/TestCase.php +++ b/src/Monolog/Test/TestCase.php @@ -22,6 +22,8 @@ use Monolog\Formatter\FormatterInterface; * * @phpstan-import-type Record from \Monolog\Logger * @phpstan-import-type Level from \Monolog\Logger + * + * @internal feel free to reuse this to test your own handlers, this is marked internal to avoid issues with PHPStorm https://github.com/Seldaek/monolog/issues/1677 */ class TestCase extends \PHPUnit\Framework\TestCase {