seregazhuk\tests\helpers\ReflectionHelper::getProperty PHP Метод

getProperty() публичный Метод

public getProperty ( $property ) : mixed
$property
Результат mixed
    public function getProperty($property)
    {
        $property = $this->reflection->getProperty($property);
        $property->setAccessible(true);
        return $property->getValue($this->reflectedObject);
    }