Skip to content

Commit 411e89a

Browse files
Support for Nette Object method getter syntax
Support for Nette Object method getter syntax - CS fix
1 parent de33963 commit 411e89a

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

src/Reflection/Nette/NetteObjectClassReflectionExtension.php

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use PHPStan\Reflection\MethodsClassReflectionExtension;
88
use PHPStan\Reflection\PropertiesClassReflectionExtension;
99
use PHPStan\Reflection\PropertyReflection;
10+
use PHPStan\Type\CallableType;
1011

1112
class NetteObjectClassReflectionExtension implements MethodsClassReflectionExtension, PropertiesClassReflectionExtension
1213
{
@@ -17,6 +18,10 @@ public function hasProperty(ClassReflection $classReflection, string $propertyNa
1718
return false;
1819
}
1920

21+
if ($classReflection->hasNativeMethod($propertyName)) {
22+
return true;
23+
}
24+
2025
$getterMethod = $this->getMethodByProperty($classReflection, $propertyName);
2126
if ($getterMethod === null) {
2227
return false;
@@ -45,6 +50,10 @@ private function getMethodByProperty(ClassReflection $classReflection, string $p
4550

4651
public function getProperty(ClassReflection $classReflection, string $propertyName): PropertyReflection
4752
{
53+
if ($classReflection->hasNativeMethod($propertyName)) {
54+
return new NetteObjectPropertyReflection($classReflection, new CallableType());
55+
}
56+
4857
/** @var \PHPStan\Reflection\MethodReflection $getterMethod */
4958
$getterMethod = $this->getMethodByProperty($classReflection, $propertyName);
5059
return new NetteObjectPropertyReflection($classReflection, $getterMethod->getReturnType());

tests/Reflection/Nette/NetteObjectClassReflectionExtensionTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ public function dataHasProperty(): array
8787
'protectedProperty',
8888
false,
8989
];
90+
$data[] = [
91+
'PHPStan\Tests\NetteObjectChild',
92+
'methodAsClosureGetter',
93+
true,
94+
];
9095
}
9196
return $data;
9297
}

tests/data/NetteObjectChild.php

+5
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,9 @@ protected function getProtectedProperty(): string
2525
return 'protected';
2626
}
2727

28+
public function methodAsClosureGetter(): string
29+
{
30+
return 'methodAsClosureGetter';
31+
}
32+
2833
}

0 commit comments

Comments
 (0)