Skip to content

Commit e2d9cfc

Browse files
committed
Fix after PHPStan update
1 parent 9ffd0e1 commit e2d9cfc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/Reflection/Dibi/DibiFluentClassReflectionExtensionTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Dibi\Fluent;
66
use PHPStan\Broker\Broker;
7-
use PHPStan\Reflection\ParametersAcceptorSelector;
87
use PHPStan\Testing\PHPStanTestCase;
98
use PHPStan\Type\VerbosityLevel;
109
use stdClass;
@@ -52,7 +51,7 @@ public function testGetMethod(): void
5251
{
5352
$classReflection = $this->broker->getClass(Fluent::class);
5453
$methodReflection = $this->extension->getMethod($classReflection, 'select');
55-
$parametersAcceptor = ParametersAcceptorSelector::selectSingle($methodReflection->getVariants());
54+
$parametersAcceptor = $methodReflection->getVariants()[0];
5655
self::assertSame('select', $methodReflection->getName());
5756
self::assertSame($classReflection, $methodReflection->getDeclaringClass());
5857
self::assertFalse($methodReflection->isStatic());

0 commit comments

Comments
 (0)