@@ -122,6 +122,7 @@ public static function invalidProvider(): array
122
122
'Class DoesNotExist is not a valid target for code coverage ' ,
123
123
TargetCollection::fromArray (
124
124
[
125
+ /** @phpstan-ignore argument.type */
125
126
Target::forClass ('DoesNotExist ' ),
126
127
],
127
128
),
@@ -130,6 +131,7 @@ public static function invalidProvider(): array
130
131
'Classes that extend class DoesNotExist is not a valid target for code coverage ' ,
131
132
TargetCollection::fromArray (
132
133
[
134
+ /** @phpstan-ignore argument.type */
133
135
Target::forClassesThatExtendClass ('DoesNotExist ' ),
134
136
],
135
137
),
@@ -138,6 +140,7 @@ public static function invalidProvider(): array
138
140
'Classes that implement interface DoesNotExist is not a valid target for code coverage ' ,
139
141
TargetCollection::fromArray (
140
142
[
143
+ /** @phpstan-ignore argument.type */
141
144
Target::forClassesThatImplementInterface ('DoesNotExist ' ),
142
145
],
143
146
),
@@ -154,6 +157,7 @@ public static function invalidProvider(): array
154
157
'Method DoesNotExist::doesNotExist is not a valid target for code coverage ' ,
155
158
TargetCollection::fromArray (
156
159
[
160
+ /** @phpstan-ignore argument.type */
157
161
Target::forMethod ('DoesNotExist ' , 'doesNotExist ' ),
158
162
],
159
163
),
0 commit comments