| 1: | <?php declare(strict_types = 1); | 
| 2: | |
| 3: | namespace PHPStan\Reflection; | 
| 4: | |
| 5: | /** | 
| 6: | * The purpose of this interface is to be able to | 
| 7: | * answer more questions about properties | 
| 8: | * without breaking backward compatibility | 
| 9: | * with existing PropertiesClassReflectionExtension. | 
| 10: | * | 
| 11: | * Developers are meant to only implement PropertyReflection | 
| 12: | * and its methods in their code. | 
| 13: | * | 
| 14: | * New methods on ExtendedPropertyReflection will be added | 
| 15: | * in minor versions. | 
| 16: | * | 
| 17: | * @api | 
| 18: | */ | 
| 19: | interface ExtendedPropertyReflection extends PropertyReflection | 
| 20: | { | 
| 21: | |
| 22: | } | 
| 23: |