We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ffd0e1 commit e2d9cfcCopy full SHA for e2d9cfc
tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php
@@ -4,7 +4,6 @@
4
5
use Dibi\Fluent;
6
use PHPStan\Broker\Broker;
7
-use PHPStan\Reflection\ParametersAcceptorSelector;
8
use PHPStan\Testing\PHPStanTestCase;
9
use PHPStan\Type\VerbosityLevel;
10
use stdClass;
@@ -52,7 +51,7 @@ public function testGetMethod(): void
52
51
{
53
$classReflection = $this->broker->getClass(Fluent::class);
54
$methodReflection = $this->extension->getMethod($classReflection, 'select');
55
- $parametersAcceptor = ParametersAcceptorSelector::selectSingle($methodReflection->getVariants());
+ $parametersAcceptor = $methodReflection->getVariants()[0];
56
self::assertSame('select', $methodReflection->getName());
57
self::assertSame($classReflection, $methodReflection->getDeclaringClass());
58
self::assertFalse($methodReflection->isStatic());
0 commit comments