| 1: | <?php declare(strict_types = 1); |
| 2: | |
| 3: | namespace PHPStan\Reflection; |
| 4: | |
| 5: | use PHPStan\TrinaryLogic; |
| 6: | use PHPStan\Type\Type; |
| 7: | |
| 8: | |
| 9: | interface MethodReflection extends ClassMemberReflection |
| 10: | { |
| 11: | |
| 12: | public function getName(): string; |
| 13: | |
| 14: | public function getPrototype(): ClassMemberReflection; |
| 15: | |
| 16: | |
| 17: | |
| 18: | |
| 19: | public function getVariants(): array; |
| 20: | |
| 21: | public function isDeprecated(): TrinaryLogic; |
| 22: | |
| 23: | public function getDeprecatedDescription(): ?string; |
| 24: | |
| 25: | public function isFinal(): TrinaryLogic; |
| 26: | |
| 27: | public function isInternal(): TrinaryLogic; |
| 28: | |
| 29: | public function getThrowType(): ?Type; |
| 30: | |
| 31: | public function hasSideEffects(): TrinaryLogic; |
| 32: | |
| 33: | } |
| 34: | |