DMS\Filter\ObjectWalker::getAccessibleReflectionProperty PHP Метод

getAccessibleReflectionProperty() приватный Метод

Retrieves a property from the object and makes it visible
private getAccessibleReflectionProperty ( string $propertyName ) : ReflectionProperty
$propertyName string
Результат ReflectionProperty
    private function getAccessibleReflectionProperty($propertyName)
    {
        $property = $this->reflClass->getProperty($propertyName);
        $property->setAccessible(true);
        return $property;
    }