File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
22
final class Factory
23
23
{
24
24
/**
25
- * @var list<array{className: class-string, argument: list<non-empty-string>|non-empty-string}>
25
+ * @var list<array{className: class-string<FilterIterator> , argument: list<non-empty-string>|non-empty-string}>
26
26
*/
27
- private array $ filters = [];
27
+ private array $ filters = []; // @phpstan-ignore missingType.generics
28
28
29
29
/**
30
30
* @param list<non-empty-string> $testIds
@@ -81,7 +81,7 @@ public function addExcludeNameFilter(string $name): void
81
81
];
82
82
}
83
83
84
- public function factory (Iterator $ iterator , TestSuite $ suite ): FilterIterator
84
+ public function factory (Iterator $ iterator , TestSuite $ suite ): FilterIterator // @phpstan-ignore missingType.generics
85
85
{
86
86
foreach ($ this ->filters as $ filter ) {
87
87
$ iterator = new $ filter ['className ' ](
You can’t perform that action at this time.
0 commit comments