}
/* }}} */
-/* {{{ proto public static mixed Reflection_Function::export(string name, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionFunction::export(string name, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_function, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Function::__construct(string name)
+/* {{{ proto public ReflectionFunction::__construct(string name)
Constructor. Throws an Exception in case the given function does not exist */
ZEND_METHOD(reflection_function, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Function::__toString()
+/* {{{ proto public string ReflectionFunction::__toString()
Returns a string representation */
ZEND_METHOD(reflection_function, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Function::getName()
+/* {{{ proto public string ReflectionFunction::getName()
Returns this function's name */
ZEND_METHOD(reflection, function_getName)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Function::isInternal()
+/* {{{ proto public bool ReflectionFunction::isInternal()
Returns whether this is an internal function */
ZEND_METHOD(reflection, function_isInternal)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Function::isUserDefined()
+/* {{{ proto public bool ReflectionFunction::isUserDefined()
Returns whether this is an user-defined function */
ZEND_METHOD(reflection_function, isUserDefined)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Function::getFileName()
+/* {{{ proto public string ReflectionFunction::getFileName()
Returns the filename of the file this function was declared in */
ZEND_METHOD(reflection_function, getFileName)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Function::getStartLine()
+/* {{{ proto public int ReflectionFunction::getStartLine()
Returns the line this function's declaration starts at */
ZEND_METHOD(reflection_function, getStartLine)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Function::getEndLine()
+/* {{{ proto public int ReflectionFunction::getEndLine()
Returns the line this function's declaration ends at */
ZEND_METHOD(reflection_function, getEndLine)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Function::getDocComment()
+/* {{{ proto public string ReflectionFunction::getDocComment()
Returns the doc comment for this function */
ZEND_METHOD(reflection_function, getDocComment)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Function::getStaticVariables()
+/* {{{ proto public array ReflectionFunction::getStaticVariables()
Returns an associative array containing this function's static variables and their values */
ZEND_METHOD(reflection_function, getStaticVariables)
{
}
/* }}} */
-/* {{{ proto public mixed Reflection_Function::invoke(mixed* args)
+/* {{{ proto public mixed ReflectionFunction::invoke(mixed* args)
Invokes the function */
ZEND_METHOD(reflection_function, invoke)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Function::returnsReference()
+/* {{{ proto public bool ReflectionFunction::returnsReference()
Gets whether this function returns a reference */
ZEND_METHOD(reflection_function, returnsReference)
{
}
/* }}} */
-/* {{{ proto public Reflection_Parameter[] Reflection_Function::getParameters()
+/* {{{ proto public ReflectionParameter[] Reflection_Function::getParameters()
Returns an array of parameter objects for this function */
ZEND_METHOD(reflection_function, getParameters)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Parameter::export(mixed function, mixed parameter, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionParameter::export(mixed function, mixed parameter, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_parameter, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Parameter::__construct(mixed function, mixed parameter)
+/* {{{ proto public ReflectionParameter::__construct(mixed function, mixed parameter)
Constructor. Throws an Exception in case the given method does not exist */
ZEND_METHOD(reflection_parameter, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Parameter::__toString()
+/* {{{ proto public string ReflectionParameter::__toString()
Returns a string representation */
ZEND_METHOD(reflection_parameter, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Parameter::getName()
+/* {{{ proto public string ReflectionParameter::getName()
Returns this parameters's name */
ZEND_METHOD(reflection_parameter, getName)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class Reflection_Parameter::getClass()
+/* {{{ proto public ReflectionClass Reflection_Parameter::getClass()
Returns this parameters's class hint or NULL if there is none */
ZEND_METHOD(reflection_parameter, getClass)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Parameter::allowsNull()
+/* {{{ proto public bool ReflectionParameter::allowsNull()
Returns whether NULL is allowed as this parameters's value */
ZEND_METHOD(reflection_parameter, allowsNull)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Parameter::isPassedByReference()
+/* {{{ proto public bool ReflectionParameter::isPassedByReference()
Returns whether this parameters is passed to by reference */
ZEND_METHOD(reflection_parameter, isPassedByReference)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Method::export(mixed class, string name, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionMethod::export(mixed class, string name, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_method, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Method::__construct(mixed class, string name)
+/* {{{ proto public ReflectionMethod::__construct(mixed class, string name)
Constructor. Throws an Exception in case the given method does not exist */
ZEND_METHOD(reflection_method, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Method::__toString()
+/* {{{ proto public string ReflectionMethod::__toString()
Returns a string representation */
ZEND_METHOD(reflection_method, __toString)
{
}
/* }}} */
-/* {{{ proto public mixed Reflection_Method::invoke(mixed object, mixed* args)
+/* {{{ proto public mixed ReflectionMethod::invoke(mixed object, mixed* args)
Invokes the function. Pass a */
ZEND_METHOD(reflection_method, invoke)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isFinal()
+/* {{{ proto public bool ReflectionMethod::isFinal()
Returns whether this method is final */
ZEND_METHOD(reflection_method, isFinal)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isAbstract()
+/* {{{ proto public bool ReflectionMethod::isAbstract()
Returns whether this method is abstract */
ZEND_METHOD(reflection_method, isAbstract)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isPublic()
+/* {{{ proto public bool ReflectionMethod::isPublic()
Returns whether this method is public */
ZEND_METHOD(reflection_method, isPublic)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isPrivate()
+/* {{{ proto public bool ReflectionMethod::isPrivate()
Returns whether this method is private */
ZEND_METHOD(reflection_method, isPrivate)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isProtected()
+/* {{{ proto public bool ReflectionMethod::isProtected()
Returns whether this method is protected */
ZEND_METHOD(reflection_method, isProtected)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isStatic()
+/* {{{ proto public bool ReflectionMethod::isStatic()
Returns whether this method is static */
ZEND_METHOD(reflection_method, isStatic)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isConstructor()
+/* {{{ proto public bool ReflectionMethod::isConstructor()
Returns whether this method is the constructor */
ZEND_METHOD(reflection_method, isConstructor)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isDestructor()
+/* {{{ proto public bool ReflectionMethod::isDestructor()
Returns whether this method is static */
ZEND_METHOD(reflection_method, isDestructor)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Method::getModifiers()
+/* {{{ proto public int ReflectionMethod::getModifiers()
Returns a bitfield of the access modifiers for this method */
ZEND_METHOD(reflection_method, getModifiers)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class Reflection_Method::getDeclaringClass()
+/* {{{ proto public ReflectionClass Reflection_Method::getDeclaringClass()
Get the declaring class */
ZEND_METHOD(reflection_method, getDeclaringClass)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Class::export(mixed argument, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionClass::export(mixed argument, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_class, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class::__construct(mixed argument) throws Reflection_Exception
+/* {{{ proto public ReflectionClass::__construct(mixed argument) throws ReflectionException
Constructor. Takes a string or an instance as an argument */
ZEND_METHOD(reflection_class, __construct)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Class::getStaticProperties()
+/* {{{ proto public array ReflectionClass::getStaticProperties()
Returns an associative array containing all static property values of the class */
ZEND_METHOD(reflection_class, getStaticProperties)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Class::getDefaultProperties()
+/* {{{ proto public array ReflectionClass::getDefaultProperties()
Returns an associative array containing copies of all default property values of the class */
ZEND_METHOD(reflection_class, getDefaultProperties)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Class::__toString()
+/* {{{ proto public string ReflectionClass::__toString()
Returns a string representation */
ZEND_METHOD(reflection_class, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Class::getName()
+/* {{{ proto public string ReflectionClass::getName()
Returns the class' name */
ZEND_METHOD(reflection_class, getName)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isInternal()
+/* {{{ proto public bool ReflectionClass::isInternal()
Returns whether this class is an internal class */
ZEND_METHOD(reflection_class, isInternal)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isUserDefined()
+/* {{{ proto public bool ReflectionClass::isUserDefined()
Returns whether this class is user-defined */
ZEND_METHOD(reflection_class, isUserDefined)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Class::getFileName()
+/* {{{ proto public string ReflectionClass::getFileName()
Returns the filename of the file this class was declared in */
ZEND_METHOD(reflection_class, getFileName)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Class::getStartLine()
+/* {{{ proto public int ReflectionClass::getStartLine()
Returns the line this class' declaration starts at */
ZEND_METHOD(reflection_class, getStartLine)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Class::getEndLine()
+/* {{{ proto public int ReflectionClass::getEndLine()
Returns the line this class' declaration ends at */
ZEND_METHOD(reflection_class, getEndLine)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Class::getDocComment()
+/* {{{ proto public string ReflectionClass::getDocComment()
Returns the doc comment for this class */
ZEND_METHOD(reflection_class, getDocComment)
{
}
/* }}} */
-/* {{{ proto public Reflection_Method Reflection_Class::getConstructor()
+/* {{{ proto public ReflectionMethod Reflection_Class::getConstructor()
Returns the class' constructor if there is one, NULL otherwise */
ZEND_METHOD(reflection_class, getConstructor)
{
}
/* }}} */
-/* {{{ proto public Reflection_Method Reflection_Class::getMethod(string name)
+/* {{{ proto public ReflectionMethod Reflection_Class::getMethod(string name)
Returns the class' method specified by it's name */
ZEND_METHOD(reflection_class, getMethod)
{
}
/* }}} */
-/* {{{ proto public Reflection_Method[] Reflection_Class::getMethods()
+/* {{{ proto public ReflectionMethod[] Reflection_Class::getMethods()
Returns an array of this class' methods */
ZEND_METHOD(reflection_class, getMethods)
{
}
/* }}} */
-/* {{{ proto public Reflection_Property Reflection_Class::getProperty(string name)
+/* {{{ proto public ReflectionProperty Reflection_Class::getProperty(string name)
Returns the class' property specified by it's name */
ZEND_METHOD(reflection_class, getProperty)
{
}
/* }}} */
-/* {{{ proto public Reflection_Property[] Reflection_Class::getProperties()
+/* {{{ proto public ReflectionProperty[] Reflection_Class::getProperties()
Returns an array of this class' properties */
ZEND_METHOD(reflection_class, getProperties)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Class::getConstants()
+/* {{{ proto public array ReflectionClass::getConstants()
Returns an associative array containing this class' constants and their values */
ZEND_METHOD(reflection_class, getConstants)
{
}
/* }}} */
-/* {{{ proto public mixed Reflection_Class::getConstant(string name)
+/* {{{ proto public mixed ReflectionClass::getConstant(string name)
Returns the class' constant specified by its name */
ZEND_METHOD(reflection_class, getConstant)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isInstantiable()
+/* {{{ proto public bool ReflectionClass::isInstantiable()
Returns whether this class is instantiable */
ZEND_METHOD(reflection_class, isInstantiable)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isInterface()
+/* {{{ proto public bool ReflectionClass::isInterface()
Returns whether this is an interface or a class */
ZEND_METHOD(reflection_class, isInterface)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isFinal()
+/* {{{ proto public bool ReflectionClass::isFinal()
Returns whether this class is final */
ZEND_METHOD(reflection_class, isFinal)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isAbstract()
+/* {{{ proto public bool ReflectionClass::isAbstract()
Returns whether this class is abstract */
ZEND_METHOD(reflection_class, isAbstract)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Class::getModifiers()
+/* {{{ proto public int ReflectionClass::getModifiers()
Returns a bitfield of the access modifiers for this class */
ZEND_METHOD(reflection_class, getModifiers)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isInstance(stdclass object)
+/* {{{ proto public bool ReflectionClass::isInstance(stdclass object)
Returns whether the given object is an instance of this class */
ZEND_METHOD(reflection_class, isInstance)
{
}
/* }}} */
-/* {{{ proto public stdclass Reflection_Class::newInstance(mixed* args, ...)
+/* {{{ proto public stdclass ReflectionClass::newInstance(mixed* args, ...)
Returns an instance of this class */
ZEND_METHOD(reflection_class, newInstance)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class[] Reflection_Class::getInterfaces()
+/* {{{ proto public ReflectionClass[] Reflection_Class::getInterfaces()
Returns an array of interfaces this class implements */
ZEND_METHOD(reflection_class, getInterfaces)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class Reflection_Class::getParentClass()
+/* {{{ proto public ReflectionClass Reflection_Class::getParentClass()
Returns the class' parent class, or, if none exists, FALSE */
ZEND_METHOD(reflection_class, getParentClass)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isSubclassOf(string|reflection_class class)
+/* {{{ proto public bool ReflectionClass::isSubclassOf(string|reflection_class class)
Returns whether this class is a subclass of another class */
ZEND_METHOD(reflection_class, isSubclassOf)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::implementsInterface(string|reflection_class interface_name)
+/* {{{ proto public bool ReflectionClass::implementsInterface(string|reflection_class interface_name)
Returns whether this class is a subclass of another class */
ZEND_METHOD(reflection_class, implementsInterface)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isIterateable()
+/* {{{ proto public bool ReflectionClass::isIterateable()
Returns whether this class is iterateable (can be used inside foreach) */
ZEND_METHOD(reflection_class, isIterateable)
{
}
/* }}} */
-/* {{{ proto public Reflection_Extension|NULL Reflection_Class::getExtension()
+/* {{{ proto public ReflectionExtension|NULL Reflection_Class::getExtension()
Returns NULL or the extension the class belongs to */
ZEND_METHOD(reflection_class, getExtension)
{
}
/* }}} */
-/* {{{ proto public string|false Reflection_Class::getExtensionName()
+/* {{{ proto public string|false ReflectionClass::getExtensionName()
Returns false or the name of the extension the class belongs to */
ZEND_METHOD(reflection_class, getExtensionName)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Object::export(mixed argument, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionObject::export(mixed argument, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_object, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Object::__construct(mixed argument) throws Reflection_Exception
+/* {{{ proto public ReflectionObject::__construct(mixed argument) throws ReflectionException
Constructor. Takes an instance as an argument */
ZEND_METHOD(reflection_object, __construct)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Property::export(mixed class, string name, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionProperty::export(mixed class, string name, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_property, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Property::__construct(mixed class, string name)
+/* {{{ proto public ReflectionProperty::__construct(mixed class, string name)
Constructor. Throws an Exception in case the given property does not exist */
ZEND_METHOD(reflection_property, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Property::__toString()
+/* {{{ proto public string ReflectionProperty::__toString()
Returns a string representation */
ZEND_METHOD(reflection_property, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Property::getName()
+/* {{{ proto public string ReflectionProperty::getName()
Returns the class' name */
ZEND_METHOD(reflection_property, getName)
{
RETURN_BOOL(ref->prop->flags & mask);
}
-/* {{{ proto public bool Reflection_Property::isPublic()
+/* {{{ proto public bool ReflectionProperty::isPublic()
Returns whether this property is public */
ZEND_METHOD(reflection_property, isPublic)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Property::isPrivate()
+/* {{{ proto public bool ReflectionProperty::isPrivate()
Returns whether this property is private */
ZEND_METHOD(reflection_property, isPrivate)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Property::isProtected()
+/* {{{ proto public bool ReflectionProperty::isProtected()
Returns whether this property is protected */
ZEND_METHOD(reflection_property, isProtected)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Property::isStatic()
+/* {{{ proto public bool ReflectionProperty::isStatic()
Returns whether this property is static */
ZEND_METHOD(reflection_property, isStatic)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Property::isDefault()
+/* {{{ proto public bool ReflectionProperty::isDefault()
Returns whether this property is default (declared at compilation time). */
ZEND_METHOD(reflection_property, isDefault)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Property::getModifiers()
+/* {{{ proto public int ReflectionProperty::getModifiers()
Returns a bitfield of the access modifiers for this property */
ZEND_METHOD(reflection_property, getModifiers)
{
}
/* }}} */
-/* {{{ proto public mixed Reflection_Property::getValue(stdclass object)
+/* {{{ proto public mixed ReflectionProperty::getValue(stdclass object)
Returns this property's value */
ZEND_METHOD(reflection_property, getValue)
{
}
/* }}} */
-/* {{{ proto public void Reflection_Property::setValue(stdclass object, mixed value)
+/* {{{ proto public void ReflectionProperty::setValue(stdclass object, mixed value)
Sets this property's value */
ZEND_METHOD(reflection_property, setValue)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class Reflection_Property::getDeclaringClass()
+/* {{{ proto public ReflectionClass Reflection_Property::getDeclaringClass()
Get the declaring class */
ZEND_METHOD(reflection_property, getDeclaringClass)
{
reflection_class_factory(ref->ce, return_value TSRMLS_CC);
}
-/* {{{ proto public static mixed Reflection_Extension::export(string name, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionExtension::export(string name, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_extension, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Extension::__construct(string name)
+/* {{{ proto public ReflectionExtension::__construct(string name)
Constructor. Throws an Exception in case the given extension does not exist */
ZEND_METHOD(reflection_extension, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Extension::__toString()
+/* {{{ proto public string ReflectionExtension::__toString()
Returns a string representation */
ZEND_METHOD(reflection_extension, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Extension::getName()
+/* {{{ proto public string ReflectionExtension::getName()
Returns this extension's name */
ZEND_METHOD(reflection_extension, getName)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Extension::getVersion()
+/* {{{ proto public string ReflectionExtension::getVersion()
Returns this extension's version */
ZEND_METHOD(reflection_extension, getVersion)
{
}
/* }}} */
-/* {{{ proto public Reflection_Function[] Reflection_Extension::getFunctions()
+/* {{{ proto public ReflectionFunction[] Reflection_Extension::getFunctions()
Returns an array of this extension's fuctions */
ZEND_METHOD(reflection_extension, getFunctions)
{
return 0;
}
-/* {{{ proto public array Reflection_Extension::getConstants()
+/* {{{ proto public array ReflectionExtension::getConstants()
Returns an associative array containing this extension's constants and their values */
ZEND_METHOD(reflection_extension, getConstants)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Extension::getINIEntries()
+/* {{{ proto public array ReflectionExtension::getINIEntries()
Returns an associative array containing this extension's INI entries and their values */
ZEND_METHOD(reflection_extension, getINIEntries)
{
}
/* }}} */
-/* {{{ proto public ReflectionClass[] Reflection_Extension::getClasses()
+/* {{{ proto public ReflectionClass[] ReflectionExtension::getClasses()
Returns an array containing Reflection_Class objects for all classes of this extension */
ZEND_METHOD(reflection_extension, getClasses)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Extension::getClassNames()
+/* {{{ proto public array ReflectionExtension::getClassNames()
Returns an array containing all names of all classes of this extension */
ZEND_METHOD(reflection_extension, getClassNames)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Function::export(string name, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionFunction::export(string name, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_function, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Function::__construct(string name)
+/* {{{ proto public ReflectionFunction::__construct(string name)
Constructor. Throws an Exception in case the given function does not exist */
ZEND_METHOD(reflection_function, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Function::__toString()
+/* {{{ proto public string ReflectionFunction::__toString()
Returns a string representation */
ZEND_METHOD(reflection_function, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Function::getName()
+/* {{{ proto public string ReflectionFunction::getName()
Returns this function's name */
ZEND_METHOD(reflection, function_getName)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Function::isInternal()
+/* {{{ proto public bool ReflectionFunction::isInternal()
Returns whether this is an internal function */
ZEND_METHOD(reflection, function_isInternal)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Function::isUserDefined()
+/* {{{ proto public bool ReflectionFunction::isUserDefined()
Returns whether this is an user-defined function */
ZEND_METHOD(reflection_function, isUserDefined)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Function::getFileName()
+/* {{{ proto public string ReflectionFunction::getFileName()
Returns the filename of the file this function was declared in */
ZEND_METHOD(reflection_function, getFileName)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Function::getStartLine()
+/* {{{ proto public int ReflectionFunction::getStartLine()
Returns the line this function's declaration starts at */
ZEND_METHOD(reflection_function, getStartLine)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Function::getEndLine()
+/* {{{ proto public int ReflectionFunction::getEndLine()
Returns the line this function's declaration ends at */
ZEND_METHOD(reflection_function, getEndLine)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Function::getDocComment()
+/* {{{ proto public string ReflectionFunction::getDocComment()
Returns the doc comment for this function */
ZEND_METHOD(reflection_function, getDocComment)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Function::getStaticVariables()
+/* {{{ proto public array ReflectionFunction::getStaticVariables()
Returns an associative array containing this function's static variables and their values */
ZEND_METHOD(reflection_function, getStaticVariables)
{
}
/* }}} */
-/* {{{ proto public mixed Reflection_Function::invoke(mixed* args)
+/* {{{ proto public mixed ReflectionFunction::invoke(mixed* args)
Invokes the function */
ZEND_METHOD(reflection_function, invoke)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Function::returnsReference()
+/* {{{ proto public bool ReflectionFunction::returnsReference()
Gets whether this function returns a reference */
ZEND_METHOD(reflection_function, returnsReference)
{
}
/* }}} */
-/* {{{ proto public Reflection_Parameter[] Reflection_Function::getParameters()
+/* {{{ proto public ReflectionParameter[] Reflection_Function::getParameters()
Returns an array of parameter objects for this function */
ZEND_METHOD(reflection_function, getParameters)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Parameter::export(mixed function, mixed parameter, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionParameter::export(mixed function, mixed parameter, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_parameter, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Parameter::__construct(mixed function, mixed parameter)
+/* {{{ proto public ReflectionParameter::__construct(mixed function, mixed parameter)
Constructor. Throws an Exception in case the given method does not exist */
ZEND_METHOD(reflection_parameter, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Parameter::__toString()
+/* {{{ proto public string ReflectionParameter::__toString()
Returns a string representation */
ZEND_METHOD(reflection_parameter, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Parameter::getName()
+/* {{{ proto public string ReflectionParameter::getName()
Returns this parameters's name */
ZEND_METHOD(reflection_parameter, getName)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class Reflection_Parameter::getClass()
+/* {{{ proto public ReflectionClass Reflection_Parameter::getClass()
Returns this parameters's class hint or NULL if there is none */
ZEND_METHOD(reflection_parameter, getClass)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Parameter::allowsNull()
+/* {{{ proto public bool ReflectionParameter::allowsNull()
Returns whether NULL is allowed as this parameters's value */
ZEND_METHOD(reflection_parameter, allowsNull)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Parameter::isPassedByReference()
+/* {{{ proto public bool ReflectionParameter::isPassedByReference()
Returns whether this parameters is passed to by reference */
ZEND_METHOD(reflection_parameter, isPassedByReference)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Method::export(mixed class, string name, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionMethod::export(mixed class, string name, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_method, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Method::__construct(mixed class, string name)
+/* {{{ proto public ReflectionMethod::__construct(mixed class, string name)
Constructor. Throws an Exception in case the given method does not exist */
ZEND_METHOD(reflection_method, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Method::__toString()
+/* {{{ proto public string ReflectionMethod::__toString()
Returns a string representation */
ZEND_METHOD(reflection_method, __toString)
{
}
/* }}} */
-/* {{{ proto public mixed Reflection_Method::invoke(mixed object, mixed* args)
+/* {{{ proto public mixed ReflectionMethod::invoke(mixed object, mixed* args)
Invokes the function. Pass a */
ZEND_METHOD(reflection_method, invoke)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isFinal()
+/* {{{ proto public bool ReflectionMethod::isFinal()
Returns whether this method is final */
ZEND_METHOD(reflection_method, isFinal)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isAbstract()
+/* {{{ proto public bool ReflectionMethod::isAbstract()
Returns whether this method is abstract */
ZEND_METHOD(reflection_method, isAbstract)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isPublic()
+/* {{{ proto public bool ReflectionMethod::isPublic()
Returns whether this method is public */
ZEND_METHOD(reflection_method, isPublic)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isPrivate()
+/* {{{ proto public bool ReflectionMethod::isPrivate()
Returns whether this method is private */
ZEND_METHOD(reflection_method, isPrivate)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isProtected()
+/* {{{ proto public bool ReflectionMethod::isProtected()
Returns whether this method is protected */
ZEND_METHOD(reflection_method, isProtected)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isStatic()
+/* {{{ proto public bool ReflectionMethod::isStatic()
Returns whether this method is static */
ZEND_METHOD(reflection_method, isStatic)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isConstructor()
+/* {{{ proto public bool ReflectionMethod::isConstructor()
Returns whether this method is the constructor */
ZEND_METHOD(reflection_method, isConstructor)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Method::isDestructor()
+/* {{{ proto public bool ReflectionMethod::isDestructor()
Returns whether this method is static */
ZEND_METHOD(reflection_method, isDestructor)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Method::getModifiers()
+/* {{{ proto public int ReflectionMethod::getModifiers()
Returns a bitfield of the access modifiers for this method */
ZEND_METHOD(reflection_method, getModifiers)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class Reflection_Method::getDeclaringClass()
+/* {{{ proto public ReflectionClass Reflection_Method::getDeclaringClass()
Get the declaring class */
ZEND_METHOD(reflection_method, getDeclaringClass)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Class::export(mixed argument, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionClass::export(mixed argument, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_class, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class::__construct(mixed argument) throws Reflection_Exception
+/* {{{ proto public ReflectionClass::__construct(mixed argument) throws ReflectionException
Constructor. Takes a string or an instance as an argument */
ZEND_METHOD(reflection_class, __construct)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Class::getStaticProperties()
+/* {{{ proto public array ReflectionClass::getStaticProperties()
Returns an associative array containing all static property values of the class */
ZEND_METHOD(reflection_class, getStaticProperties)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Class::getDefaultProperties()
+/* {{{ proto public array ReflectionClass::getDefaultProperties()
Returns an associative array containing copies of all default property values of the class */
ZEND_METHOD(reflection_class, getDefaultProperties)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Class::__toString()
+/* {{{ proto public string ReflectionClass::__toString()
Returns a string representation */
ZEND_METHOD(reflection_class, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Class::getName()
+/* {{{ proto public string ReflectionClass::getName()
Returns the class' name */
ZEND_METHOD(reflection_class, getName)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isInternal()
+/* {{{ proto public bool ReflectionClass::isInternal()
Returns whether this class is an internal class */
ZEND_METHOD(reflection_class, isInternal)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isUserDefined()
+/* {{{ proto public bool ReflectionClass::isUserDefined()
Returns whether this class is user-defined */
ZEND_METHOD(reflection_class, isUserDefined)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Class::getFileName()
+/* {{{ proto public string ReflectionClass::getFileName()
Returns the filename of the file this class was declared in */
ZEND_METHOD(reflection_class, getFileName)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Class::getStartLine()
+/* {{{ proto public int ReflectionClass::getStartLine()
Returns the line this class' declaration starts at */
ZEND_METHOD(reflection_class, getStartLine)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Class::getEndLine()
+/* {{{ proto public int ReflectionClass::getEndLine()
Returns the line this class' declaration ends at */
ZEND_METHOD(reflection_class, getEndLine)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Class::getDocComment()
+/* {{{ proto public string ReflectionClass::getDocComment()
Returns the doc comment for this class */
ZEND_METHOD(reflection_class, getDocComment)
{
}
/* }}} */
-/* {{{ proto public Reflection_Method Reflection_Class::getConstructor()
+/* {{{ proto public ReflectionMethod Reflection_Class::getConstructor()
Returns the class' constructor if there is one, NULL otherwise */
ZEND_METHOD(reflection_class, getConstructor)
{
}
/* }}} */
-/* {{{ proto public Reflection_Method Reflection_Class::getMethod(string name)
+/* {{{ proto public ReflectionMethod Reflection_Class::getMethod(string name)
Returns the class' method specified by it's name */
ZEND_METHOD(reflection_class, getMethod)
{
}
/* }}} */
-/* {{{ proto public Reflection_Method[] Reflection_Class::getMethods()
+/* {{{ proto public ReflectionMethod[] Reflection_Class::getMethods()
Returns an array of this class' methods */
ZEND_METHOD(reflection_class, getMethods)
{
}
/* }}} */
-/* {{{ proto public Reflection_Property Reflection_Class::getProperty(string name)
+/* {{{ proto public ReflectionProperty Reflection_Class::getProperty(string name)
Returns the class' property specified by it's name */
ZEND_METHOD(reflection_class, getProperty)
{
}
/* }}} */
-/* {{{ proto public Reflection_Property[] Reflection_Class::getProperties()
+/* {{{ proto public ReflectionProperty[] Reflection_Class::getProperties()
Returns an array of this class' properties */
ZEND_METHOD(reflection_class, getProperties)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Class::getConstants()
+/* {{{ proto public array ReflectionClass::getConstants()
Returns an associative array containing this class' constants and their values */
ZEND_METHOD(reflection_class, getConstants)
{
}
/* }}} */
-/* {{{ proto public mixed Reflection_Class::getConstant(string name)
+/* {{{ proto public mixed ReflectionClass::getConstant(string name)
Returns the class' constant specified by its name */
ZEND_METHOD(reflection_class, getConstant)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isInstantiable()
+/* {{{ proto public bool ReflectionClass::isInstantiable()
Returns whether this class is instantiable */
ZEND_METHOD(reflection_class, isInstantiable)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isInterface()
+/* {{{ proto public bool ReflectionClass::isInterface()
Returns whether this is an interface or a class */
ZEND_METHOD(reflection_class, isInterface)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isFinal()
+/* {{{ proto public bool ReflectionClass::isFinal()
Returns whether this class is final */
ZEND_METHOD(reflection_class, isFinal)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isAbstract()
+/* {{{ proto public bool ReflectionClass::isAbstract()
Returns whether this class is abstract */
ZEND_METHOD(reflection_class, isAbstract)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Class::getModifiers()
+/* {{{ proto public int ReflectionClass::getModifiers()
Returns a bitfield of the access modifiers for this class */
ZEND_METHOD(reflection_class, getModifiers)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isInstance(stdclass object)
+/* {{{ proto public bool ReflectionClass::isInstance(stdclass object)
Returns whether the given object is an instance of this class */
ZEND_METHOD(reflection_class, isInstance)
{
}
/* }}} */
-/* {{{ proto public stdclass Reflection_Class::newInstance(mixed* args, ...)
+/* {{{ proto public stdclass ReflectionClass::newInstance(mixed* args, ...)
Returns an instance of this class */
ZEND_METHOD(reflection_class, newInstance)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class[] Reflection_Class::getInterfaces()
+/* {{{ proto public ReflectionClass[] Reflection_Class::getInterfaces()
Returns an array of interfaces this class implements */
ZEND_METHOD(reflection_class, getInterfaces)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class Reflection_Class::getParentClass()
+/* {{{ proto public ReflectionClass Reflection_Class::getParentClass()
Returns the class' parent class, or, if none exists, FALSE */
ZEND_METHOD(reflection_class, getParentClass)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isSubclassOf(string|reflection_class class)
+/* {{{ proto public bool ReflectionClass::isSubclassOf(string|reflection_class class)
Returns whether this class is a subclass of another class */
ZEND_METHOD(reflection_class, isSubclassOf)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::implementsInterface(string|reflection_class interface_name)
+/* {{{ proto public bool ReflectionClass::implementsInterface(string|reflection_class interface_name)
Returns whether this class is a subclass of another class */
ZEND_METHOD(reflection_class, implementsInterface)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Class::isIterateable()
+/* {{{ proto public bool ReflectionClass::isIterateable()
Returns whether this class is iterateable (can be used inside foreach) */
ZEND_METHOD(reflection_class, isIterateable)
{
}
/* }}} */
-/* {{{ proto public Reflection_Extension|NULL Reflection_Class::getExtension()
+/* {{{ proto public ReflectionExtension|NULL Reflection_Class::getExtension()
Returns NULL or the extension the class belongs to */
ZEND_METHOD(reflection_class, getExtension)
{
}
/* }}} */
-/* {{{ proto public string|false Reflection_Class::getExtensionName()
+/* {{{ proto public string|false ReflectionClass::getExtensionName()
Returns false or the name of the extension the class belongs to */
ZEND_METHOD(reflection_class, getExtensionName)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Object::export(mixed argument, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionObject::export(mixed argument, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_object, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Object::__construct(mixed argument) throws Reflection_Exception
+/* {{{ proto public ReflectionObject::__construct(mixed argument) throws ReflectionException
Constructor. Takes an instance as an argument */
ZEND_METHOD(reflection_object, __construct)
{
}
/* }}} */
-/* {{{ proto public static mixed Reflection_Property::export(mixed class, string name, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionProperty::export(mixed class, string name, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_property, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Property::__construct(mixed class, string name)
+/* {{{ proto public ReflectionProperty::__construct(mixed class, string name)
Constructor. Throws an Exception in case the given property does not exist */
ZEND_METHOD(reflection_property, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Property::__toString()
+/* {{{ proto public string ReflectionProperty::__toString()
Returns a string representation */
ZEND_METHOD(reflection_property, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Property::getName()
+/* {{{ proto public string ReflectionProperty::getName()
Returns the class' name */
ZEND_METHOD(reflection_property, getName)
{
RETURN_BOOL(ref->prop->flags & mask);
}
-/* {{{ proto public bool Reflection_Property::isPublic()
+/* {{{ proto public bool ReflectionProperty::isPublic()
Returns whether this property is public */
ZEND_METHOD(reflection_property, isPublic)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Property::isPrivate()
+/* {{{ proto public bool ReflectionProperty::isPrivate()
Returns whether this property is private */
ZEND_METHOD(reflection_property, isPrivate)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Property::isProtected()
+/* {{{ proto public bool ReflectionProperty::isProtected()
Returns whether this property is protected */
ZEND_METHOD(reflection_property, isProtected)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Property::isStatic()
+/* {{{ proto public bool ReflectionProperty::isStatic()
Returns whether this property is static */
ZEND_METHOD(reflection_property, isStatic)
{
}
/* }}} */
-/* {{{ proto public bool Reflection_Property::isDefault()
+/* {{{ proto public bool ReflectionProperty::isDefault()
Returns whether this property is default (declared at compilation time). */
ZEND_METHOD(reflection_property, isDefault)
{
}
/* }}} */
-/* {{{ proto public int Reflection_Property::getModifiers()
+/* {{{ proto public int ReflectionProperty::getModifiers()
Returns a bitfield of the access modifiers for this property */
ZEND_METHOD(reflection_property, getModifiers)
{
}
/* }}} */
-/* {{{ proto public mixed Reflection_Property::getValue(stdclass object)
+/* {{{ proto public mixed ReflectionProperty::getValue(stdclass object)
Returns this property's value */
ZEND_METHOD(reflection_property, getValue)
{
}
/* }}} */
-/* {{{ proto public void Reflection_Property::setValue(stdclass object, mixed value)
+/* {{{ proto public void ReflectionProperty::setValue(stdclass object, mixed value)
Sets this property's value */
ZEND_METHOD(reflection_property, setValue)
{
}
/* }}} */
-/* {{{ proto public Reflection_Class Reflection_Property::getDeclaringClass()
+/* {{{ proto public ReflectionClass Reflection_Property::getDeclaringClass()
Get the declaring class */
ZEND_METHOD(reflection_property, getDeclaringClass)
{
reflection_class_factory(ref->ce, return_value TSRMLS_CC);
}
-/* {{{ proto public static mixed Reflection_Extension::export(string name, [, bool return]) throws Reflection_Exception
+/* {{{ proto public static mixed ReflectionExtension::export(string name, [, bool return]) throws ReflectionException
Exports a reflection object. Returns the output if TRUE is specified for return, printing it otherwise. */
ZEND_METHOD(reflection_extension, export)
{
}
/* }}} */
-/* {{{ proto public Reflection_Extension::__construct(string name)
+/* {{{ proto public ReflectionExtension::__construct(string name)
Constructor. Throws an Exception in case the given extension does not exist */
ZEND_METHOD(reflection_extension, __construct)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Extension::__toString()
+/* {{{ proto public string ReflectionExtension::__toString()
Returns a string representation */
ZEND_METHOD(reflection_extension, __toString)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Extension::getName()
+/* {{{ proto public string ReflectionExtension::getName()
Returns this extension's name */
ZEND_METHOD(reflection_extension, getName)
{
}
/* }}} */
-/* {{{ proto public string Reflection_Extension::getVersion()
+/* {{{ proto public string ReflectionExtension::getVersion()
Returns this extension's version */
ZEND_METHOD(reflection_extension, getVersion)
{
}
/* }}} */
-/* {{{ proto public Reflection_Function[] Reflection_Extension::getFunctions()
+/* {{{ proto public ReflectionFunction[] Reflection_Extension::getFunctions()
Returns an array of this extension's fuctions */
ZEND_METHOD(reflection_extension, getFunctions)
{
return 0;
}
-/* {{{ proto public array Reflection_Extension::getConstants()
+/* {{{ proto public array ReflectionExtension::getConstants()
Returns an associative array containing this extension's constants and their values */
ZEND_METHOD(reflection_extension, getConstants)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Extension::getINIEntries()
+/* {{{ proto public array ReflectionExtension::getINIEntries()
Returns an associative array containing this extension's INI entries and their values */
ZEND_METHOD(reflection_extension, getINIEntries)
{
}
/* }}} */
-/* {{{ proto public ReflectionClass[] Reflection_Extension::getClasses()
+/* {{{ proto public ReflectionClass[] ReflectionExtension::getClasses()
Returns an array containing Reflection_Class objects for all classes of this extension */
ZEND_METHOD(reflection_extension, getClasses)
{
}
/* }}} */
-/* {{{ proto public array Reflection_Extension::getClassNames()
+/* {{{ proto public array ReflectionExtension::getClassNames()
Returns an array containing all names of all classes of this extension */
ZEND_METHOD(reflection_extension, getClassNames)
{