Skip to content

Commit a5d18ad

Browse files
Fix
1 parent 13daba3 commit a5d18ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Reflection/ClassReflection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ public function getProperty(string $propertyName, ClassMemberAccessAnswerer $sco
751751

752752
// For BC purpose
753753
if ($this->getPhpExtension()->hasStaticProperty($this, $propertyName)) {
754-
$property = $this->wrapExtendedProperty($this->getPhpExtension()->getStaticProperty($this, $propertyName));
754+
$property = $this->wrapExtendedProperty($propertyName, $this->getPhpExtension()->getStaticProperty($this, $propertyName));
755755
if ($scope->canReadProperty($property)) {
756756
return $this->properties[$key] = $property;
757757
}

0 commit comments

Comments
 (0)