| 1: | <?php declare(strict_types = 1); |
| 2: | |
| 3: | namespace PHPStan\Rules\Properties; |
| 4: | |
| 5: | use PHPStan\Reflection\ExtendedPropertyReflection; |
| 6: | |
| 7: | |
| 8: | |
| 9: | |
| 10: | |
| 11: | |
| 12: | |
| 13: | |
| 14: | |
| 15: | |
| 16: | |
| 17: | |
| 18: | |
| 19: | |
| 20: | |
| 21: | |
| 22: | |
| 23: | |
| 24: | |
| 25: | interface ReadWritePropertiesExtension |
| 26: | { |
| 27: | |
| 28: | public function isAlwaysRead(ExtendedPropertyReflection $property, string $propertyName): bool; |
| 29: | |
| 30: | public function isAlwaysWritten(ExtendedPropertyReflection $property, string $propertyName): bool; |
| 31: | |
| 32: | public function isInitialized(ExtendedPropertyReflection $property, string $propertyName): bool; |
| 33: | |
| 34: | } |
| 35: | |