Skip to content

Commit a778c61

Browse files
committed
Fixes after PHPStan update
1 parent d01fd32 commit a778c61

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

src/Type/BeberleiAssert/AssertThatDynamicMethodReturnTypeExtension.php

+2-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
use PhpParser\Node\Expr\StaticCall;
66
use PHPStan\Analyser\Scope;
77
use PHPStan\Reflection\MethodReflection;
8-
use PHPStan\Reflection\ParametersAcceptorSelector;
98
use PHPStan\Type\DynamicStaticMethodReturnTypeExtension;
109
use PHPStan\Type\Type;
1110
use function count;
@@ -28,12 +27,10 @@ public function isStaticMethodSupported(MethodReflection $methodReflection): boo
2827
], true);
2928
}
3029

31-
public function getTypeFromStaticMethodCall(MethodReflection $methodReflection, StaticCall $methodCall, Scope $scope): Type
30+
public function getTypeFromStaticMethodCall(MethodReflection $methodReflection, StaticCall $methodCall, Scope $scope): ?Type
3231
{
3332
if (count($methodCall->getArgs()) === 0) {
34-
return ParametersAcceptorSelector::selectSingle(
35-
$methodReflection->getVariants(),
36-
)->getReturnType();
33+
return null;
3734
}
3835

3936
$valueExpr = $methodCall->getArgs()[0]->value;

src/Type/BeberleiAssert/AssertThatFunctionDynamicReturnTypeExtension.php

+2-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
use PhpParser\Node\Expr\FuncCall;
66
use PHPStan\Analyser\Scope;
77
use PHPStan\Reflection\FunctionReflection;
8-
use PHPStan\Reflection\ParametersAcceptorSelector;
98
use PHPStan\Type\DynamicFunctionReturnTypeExtension;
109
use PHPStan\Type\Type;
1110
use function count;
@@ -29,12 +28,10 @@ public function getTypeFromFunctionCall(
2928
FunctionReflection $functionReflection,
3029
FuncCall $functionCall,
3130
Scope $scope
32-
): Type
31+
): ?Type
3332
{
3433
if (count($functionCall->getArgs()) === 0) {
35-
return ParametersAcceptorSelector::selectSingle(
36-
$functionReflection->getVariants(),
37-
)->getReturnType();
34+
return null;
3835
}
3936

4037
$valueExpr = $functionCall->getArgs()[0]->value;

0 commit comments

Comments
 (0)