Skip to content

Commit 8e4ca2d

Browse files
committed
add test
1 parent 342dc60 commit 8e4ca2d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Rector\PHPUnit\Tests\CodeQuality\Rector\Class_\AddReturnTypeToDependedRector\Fixture;
4+
5+
use PHPUnit\Framework\TestCase;
6+
7+
final class SkipDocblockBasedType extends TestCase
8+
{
9+
/**
10+
* @param int $someValue
11+
*/
12+
public function test($someValue)
13+
{
14+
return $someValue;
15+
}
16+
}

0 commit comments

Comments
 (0)