| 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 getName(): string; |
| 30: | |
| 31: | public function hasPhpDocType(): bool; |
| 32: | |
| 33: | public function getPhpDocType(): Type; |
| 34: | |
| 35: | public function hasNativeType(): bool; |
| 36: | |
| 37: | public function getNativeType(): Type; |
| 38: | |
| 39: | public function isAbstract(): TrinaryLogic; |
| 40: | |
| 41: | public function isFinalByKeyword(): TrinaryLogic; |
| 42: | |
| 43: | public function isFinal(): TrinaryLogic; |
| 44: | |
| 45: | public function isVirtual(): TrinaryLogic; |
| 46: | |
| 47: | |
| 48: | |
| 49: | |
| 50: | public function hasHook(string $hookType): bool; |
| 51: | |
| 52: | |
| 53: | |
| 54: | |
| 55: | public function getHook(string $hookType): ExtendedMethodReflection; |
| 56: | |
| 57: | public function isProtectedSet(): bool; |
| 58: | |
| 59: | public function isPrivateSet(): bool; |
| 60: | |
| 61: | |
| 62: | |
| 63: | |
| 64: | public function getAttributes(): array; |
| 65: | |
| 66: | |
| 67: | |
| 68: | |
| 69: | |
| 70: | |
| 71: | |
| 72: | public function isDummy(): TrinaryLogic; |
| 73: | |
| 74: | } |
| 75: | |