class CurrentRuntimeReflectionRawDataProvider implements ReflectionDataProvider (View source)

Methods

string[]
getReflectionFunctions()

Get internal function names.

string[]
getReflectionClasses()

Get internal class names (excluding enums and interfaces).

string[]
getReflectionInterfaces()

Get internal interface names.

string[]
getReflectionEnums()

Get internal enum names (PHP 8.1+).

array<string, mixed>
getReflectionConstants()

Get internal constants as name => value pairs.

Details

string[] getReflectionFunctions()

Get internal function names.

Return Value

string[]

Function names

string[] getReflectionClasses()

Get internal class names (excluding enums and interfaces).

Return Value

string[]

Canonical class names

string[] getReflectionInterfaces()

Get internal interface names.

Return Value

string[]

Interface names

string[] getReflectionEnums()

Get internal enum names (PHP 8.1+).

Return Value

string[]

Enum names

array<string, mixed> getReflectionConstants()

Get internal constants as name => value pairs.

Return Value

array<string, mixed>

Constant name => value