Helper\Unit::getProtectedProperty PHP 메소드

getProtectedProperty() 공개 메소드

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