1: <?php declare(strict_types = 1);
2:
3: namespace PHPStan\Reflection;
4:
5: /** @api */
6: interface MethodsClassReflectionExtension
7: {
8:
9: public function hasMethod(ClassReflection $classReflection, string $methodName): bool;
10:
11: public function getMethod(ClassReflection $classReflection, string $methodName): MethodReflection;
12:
13: }
14: