--TEST-- ReflectionObject::IsInstantiable() - variation - constructors --FILE-- getName(); echo "Is $name instantiable? "; var_dump($reflectionObject->IsInstantiable()); } ?> --EXPECT-- Is noCtor instantiable? bool(true) Is publicCtorNew instantiable? bool(true) Is protectedCtorNew instantiable? bool(false) Is privateCtorNew instantiable? bool(false)