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 ExtendedPropertyReflection extends PropertyReflection |
23: | { |
24: | |
25: | public const HOOK_GET = 'get'; |
26: | |
27: | public const HOOK_SET = 'set'; |
28: | |
29: | public function hasPhpDocType(): bool; |
30: | |
31: | public function getPhpDocType(): Type; |
32: | |
33: | public function hasNativeType(): bool; |
34: | |
35: | public function getNativeType(): Type; |
36: | |
37: | public function isAbstract(): TrinaryLogic; |
38: | |
39: | public function isFinal(): TrinaryLogic; |
40: | |
41: | public function isVirtual(): TrinaryLogic; |
42: | |
43: | |
44: | |
45: | |
46: | public function hasHook(string $hookType): bool; |
47: | |
48: | |
49: | |
50: | |
51: | public function getHook(string $hookType): ExtendedMethodReflection; |
52: | |
53: | public function isProtectedSet(): bool; |
54: | |
55: | public function isPrivateSet(): bool; |
56: | |
57: | } |
58: | |