CloudConvert\tests\ApiTest::getPrivateProperty PHP Method

getPrivateProperty() protected static method

protected static getPrivateProperty ( $name )
    protected static function getPrivateProperty($name)
    {
        $class = new \ReflectionClass('CloudConvert\\Api');
        $property = $class->getProperty($name);
        $property->setAccessible(true);
        return $property;
    }