seregazhuk\tests\helpers\ReflectionHelper::getProperty PHP Method

getProperty() public method

public getProperty ( $property ) : mixed
$property
return mixed
    public function getProperty($property)
    {
        $property = $this->reflection->getProperty($property);
        $property->setAccessible(true);
        return $property->getValue($this->reflectedObject);
    }