From 1dc38d34bddb6edb07e538e362bd47b7e3770fe6 Mon Sep 17 00:00:00 2001 From: Flyingmana Date: Wed, 6 Aug 2025 01:45:30 +0200 Subject: [PATCH] do not skip Generator for MissingTypehintCheck --- src/Rules/MissingTypehintCheck.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Rules/MissingTypehintCheck.php b/src/Rules/MissingTypehintCheck.php index e92904cd09..4563400daa 100644 --- a/src/Rules/MissingTypehintCheck.php +++ b/src/Rules/MissingTypehintCheck.php @@ -43,7 +43,7 @@ final class MissingTypehintCheck Traversable::class, Iterator::class, IteratorAggregate::class, - Generator::class, + //Generator::class, ]; /**