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