From c8c37a4e36300f1fc4a7fb44ee22186eac1e60a4 Mon Sep 17 00:00:00 2001 From: smiley Date: Fri, 21 Apr 2023 23:22:27 +0200 Subject: [PATCH] :wrench: phan happy --- tests/QRCodeReaderTestAbstract.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/QRCodeReaderTestAbstract.php b/tests/QRCodeReaderTestAbstract.php index 9dcd23657..e6b789cf5 100644 --- a/tests/QRCodeReaderTestAbstract.php +++ b/tests/QRCodeReaderTestAbstract.php @@ -122,7 +122,10 @@ abstract class QRCodeReaderTestAbstract extends TestCase{ $str = str_repeat(self::loremipsum, 5); $eccLevels = array_map(fn(int $ecc):EccLevel => new EccLevel($ecc), [EccLevel::L, EccLevel::M, EccLevel::Q, EccLevel::H]); - /** @noinspection PhpUndefinedConstantInspection - see phpunit.xml.dist */ + /** + * @noinspection PhpUndefinedConstantInspection - see phpunit.xml.dist + * @phan-suppress-next-next-line PhanUndeclaredConstant + */ for($v = 1; $v <= READER_TEST_MAX_VERSION; $v++){ $version = new Version($v);