File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace PHPStan \Rules \Properties ;
4
4
5
- use PHPStan \Reflection \PropertyReflection ;
5
+ use PHPStan \Reflection \ExtendedPropertyReflection ;
6
6
7
7
/**
8
8
* This is the extension interface to implement if you want to describe
25
25
interface ReadWritePropertiesExtension
26
26
{
27
27
28
- public function isAlwaysRead (PropertyReflection $ property , string $ propertyName ): bool ;
28
+ public function isAlwaysRead (ExtendedPropertyReflection $ property , string $ propertyName ): bool ;
29
29
30
- public function isAlwaysWritten (PropertyReflection $ property , string $ propertyName ): bool ;
30
+ public function isAlwaysWritten (ExtendedPropertyReflection $ property , string $ propertyName ): bool ;
31
31
32
- public function isInitialized (PropertyReflection $ property , string $ propertyName ): bool ;
32
+ public function isInitialized (ExtendedPropertyReflection $ property , string $ propertyName ): bool ;
33
33
34
34
}
You can’t perform that action at this time.
0 commit comments