We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e917bd commit c647a06Copy full SHA for c647a06
1 file changed
rules-tests/TypeDeclarationDocblocks/Rector/ClassMethod/AddParamArrayDocblockFromDataProviderRector/Fixture/skip_mixed_from_param_array.php.inc
@@ -0,0 +1,24 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
5
+namespace Rector\Tests\TypeDeclarationDocblocks\Rector\ClassMethod\AddParamArrayDocblockFromDataProviderRector\Fixture;
6
7
+use PHPUnit\Framework\Attributes\DataProvider;
8
+use PHPUnit\Framework\TestCase;
9
10
+final class SkipMixedFromParamArray extends TestCase
11
+{
12
+ #[DataProvider('provideData')]
13
+ public function test(array $names): void
14
+ {
15
+ }
16
17
+ public static function provideData()
18
19
+ return [
20
+ [$item],
21
+ [$item2],
22
+ ];
23
24
+}
0 commit comments