Helper\Unit::getProtectedProperty PHP Méthode

getProtectedProperty() public méthode

public getProtectedProperty ( $obj, $prop )
    public function getProtectedProperty($obj, $prop)
    {
        $reflection = new ReflectionClass($obj);
        $property = $reflection->getProperty($prop);
        $property->setAccessible(true);
        return $property->getValue($obj);
    }