From a7dd1597bbe69c532a8b9fef59ccc29e312642cd Mon Sep 17 00:00:00 2001 From: Matias Ylipelto <129368437+lianatech-matias-ylipelto@users.noreply.github.com> Date: Mon, 2 Dec 2024 11:14:26 +0200 Subject: [PATCH] Ignore phpstan argument.type lint in test Signed-off-by: Matias Ylipelto <129368437+lianatech-matias-ylipelto@users.noreply.github.com> --- tests/Test/Prometheus/Storage/APCngTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Test/Prometheus/Storage/APCngTest.php b/tests/Test/Prometheus/Storage/APCngTest.php index 02be614..d9990a2 100644 --- a/tests/Test/Prometheus/Storage/APCngTest.php +++ b/tests/Test/Prometheus/Storage/APCngTest.php @@ -56,7 +56,7 @@ public function nonStringLabelValuesAreCastToStrings(): void 'int_label_values', 'test int label values', ['int_label'], - )->incBy(3, [3]); + )->incBy(3, [3]); // @phpstan-ignore argument.type $counter = apcu_fetch("prom:counter:ns_int_label_values:WyIzIl0=:value"); self::assertSame(3000, $counter);