1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\Type;
4:
5: use PhpParser\Node\Expr\MethodCall;
6: use PHPStan\Analyser\Scope;
7: use PHPStan\Reflection\MethodReflection;
8:
9: /** @api */
10: interface DynamicMethodReturnTypeExtension
11: {
12:
13: public function getClass(): string;
14:
15: public function isMethodSupported(MethodReflection $methodReflection): bool;
16:
17: public function getTypeFromMethodCall(MethodReflection $methodReflection, MethodCall $methodCall, Scope $scope): ?Type;
18:
19: }
20: