1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace PHPStan\Reflection; |
4: | |
5: | /** @api */ |
6: | interface ClassMemberReflection |
7: | { |
8: | |
9: | public function getDeclaringClass(): ClassReflection; |
10: | |
11: | public function isStatic(): bool; |
12: | |
13: | public function isPrivate(): bool; |
14: | |
15: | public function isPublic(): bool; |
16: | |
17: | public function getDocComment(): ?string; |
18: | |
19: | } |
20: |