class Reflection
{
- /** @return array */
+ /** @return string[] */
public static function getModifierNames(int $modifiers) {}
public static function export(Reflector $reflector, bool $return = false) {}
/** @return bool */
public function isVariadic() {}
- /** @return ?Closure */
+ /** @return ?object */
public function getClosureThis() {}
/** @return ?ReflectionClass */
/** @return int */
public function getNumberOfRequiredParameters() {}
- /** @return array */
+ /** @return ReflectionParameter[] */
public function getParameters() {}
/** @return string|false */
/** @return ReflectionMethod */
public function getMethod(string $name) {}
- /** @return array */
+ /** @return ReflectionMethod[] */
public function getMethods(?int $filter = null) {}
/** @return bool */
/** @return ReflectionProperty */
public function getProperty(string $name) {}
- /** @return array */
+ /** @return ReflectionProperty[] */
public function getProperties(?int $filter = null) {}
/** @return bool */
/** @return ?array */
public function getConstants() {}
- /** @return array */
+ /** @return ReflectionClassConstant[] */
public function getReflectionConstants() {}
public function getConstant(string $name) {}
/** @return ReflectionClassConstant|false */
public function getReflectionConstant(string $name) {}
- /** @return array */
+ /** @return ReflectionClass[] */
public function getInterfaces() {}
- /** @return array */
+ /** @return string[] */
public function getInterfaceNames() {}
/** @return bool */
public function isInterface() {}
- /** @return array */
+ /** @return ReflectionClass[] */
public function getTraits() {}
- /** @return array */
+ /** @return string[] */
public function getTraitNames() {}
- /** @return array */
+ /** @return string[] */
public function getTraitAliases() {}
/** @return bool */
/** @return ?string */
public function getVersion() {}
- /** @return array */
+ /** @return ReflectionFunction[] */
public function getFunctions() {}
/** @return array */
/** @return array */
public function getINIEntries() {}
- /** @return array */
+ /** @return ReflectionClass[] */
public function getClasses() {}
- /** @return array */
+ /** @return string[] */
public function getClassNames() {}
/** @return array */