1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\Reflection; |
4: | |
5: | use PHPStan\TrinaryLogic; |
6: | use PHPStan\Type\Type; |
7: | |
8: | |
9: | |
10: | |
11: | |
12: | |
13: | |
14: | |
15: | |
16: | |
17: | |
18: | |
19: | |
20: | |
21: | |
22: | interface ExtendedMethodReflection extends MethodReflection |
23: | { |
24: | |
25: | |
26: | |
27: | |
28: | public function getVariants(): array; |
29: | |
30: | |
31: | |
32: | |
33: | public function getOnlyVariant(): ExtendedParametersAcceptor; |
34: | |
35: | |
36: | |
37: | |
38: | public function getNamedArgumentsVariants(): ?array; |
39: | |
40: | public function acceptsNamedArguments(): TrinaryLogic; |
41: | |
42: | public function getAsserts(): Assertions; |
43: | |
44: | public function getSelfOutType(): ?Type; |
45: | |
46: | public function returnsByReference(): TrinaryLogic; |
47: | |
48: | public function isFinalByKeyword(): TrinaryLogic; |
49: | |
50: | public function isAbstract(): TrinaryLogic|bool; |
51: | |
52: | public function isBuiltin(): TrinaryLogic|bool; |
53: | |
54: | |
55: | |
56: | |
57: | |
58: | |
59: | |
60: | |
61: | public function isPure(): TrinaryLogic; |
62: | |
63: | |
64: | |
65: | |
66: | public function getAttributes(): array; |
67: | |
68: | } |
69: | |