File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33namespace PHPStan \Rules \Properties ;
44
5- use PHPStan \Reflection \PropertyReflection ;
5+ use PHPStan \Reflection \ExtendedPropertyReflection ;
66
77/**
88 * This is the extension interface to implement if you want to describe
2525interface ReadWritePropertiesExtension
2626{
2727
28- public function isAlwaysRead (PropertyReflection $ property , string $ propertyName ): bool ;
28+ public function isAlwaysRead (ExtendedPropertyReflection $ property , string $ propertyName ): bool ;
2929
30- public function isAlwaysWritten (PropertyReflection $ property , string $ propertyName ): bool ;
30+ public function isAlwaysWritten (ExtendedPropertyReflection $ property , string $ propertyName ): bool ;
3131
32- public function isInitialized (PropertyReflection $ property , string $ propertyName ): bool ;
32+ public function isInitialized (ExtendedPropertyReflection $ property , string $ propertyName ): bool ;
3333
3434}
You can’t perform that action at this time.
0 commit comments