final class ComponentReflection extends ReflectionClass

internal  
 

Helpers for Presenter & Component.

Properties

string read-only $name
string read-only $fileName

Methods

array
getPersistentParams(string $class = null)

Returns array of classes persistent parameters. They have public visibility, are non-static and have annotation @persistent.

array
getPersistentComponents(string $class = null)

No description

void
saveState(Component $component, array $params)

Saves state informations for next request.

bool
hasCallableMethod(string $method)

Is a method callable? It means class is instantiable and method has public visibility, is non-static and non-abstract.

static array
combineArgs(ReflectionFunctionAbstract $method, array $args)

No description

static bool
convertType($val, string $types)

Non data-loss type conversion.

static array|null
parseAnnotation(Reflector $ref, string $name)

Returns an annotation value.

static string
getParameterType(ReflectionParameter $param)

No description

static string
getPropertyType(ReflectionProperty $prop, $default)

No description

bool
hasAnnotation(string $name)

Has class specified annotation?

mixed
getAnnotation(string $name)

Returns an annotation value.

getMethod($name)

No description

array
getMethods($filter = -1)

No description

static array
getClassesAndTraits(string $class)

return string[]

Details

at line 39
array getPersistentParams(string $class = null)

Returns array of classes persistent parameters. They have public visibility, are non-static and have annotation @persistent.

Parameters

string $class

Return Value

array

at line 75
array getPersistentComponents(string $class = null)

No description

Parameters

string $class

Return Value

array

at line 99
void saveState(Component $component, array $params)

Saves state informations for next request.

Parameters

Component $component
array $params

Return Value

void

at line 139
bool hasCallableMethod(string $method)

Is a method callable? It means class is instantiable and method has public visibility, is non-static and non-abstract.

Parameters

string $method

Return Value

bool

at line 155
static array combineArgs(ReflectionFunctionAbstract $method, array $args)

No description

Parameters

ReflectionFunctionAbstract $method
array $args

Return Value

array

at line 193
static bool convertType($val, string $types)

Non data-loss type conversion.

Parameters

$val
string $types

Return Value

bool

at line 256
static array|null parseAnnotation(Reflector $ref, string $name)

Returns an annotation value.

Parameters

Reflector $ref
string $name

Return Value

array|null

at line 274
static string getParameterType(ReflectionParameter $param)

No description

Parameters

ReflectionParameter $param

Return Value

string

at line 284
static string getPropertyType(ReflectionProperty $prop, $default)

No description

Parameters

ReflectionProperty $prop
$default

Return Value

string

at line 296
bool hasAnnotation(string $name)

Has class specified annotation?

Parameters

string $name

Return Value

bool

at line 306
mixed getAnnotation(string $name)

Returns an annotation value.

Parameters

string $name

Return Value

mixed

at line 313
MethodReflection getMethod($name)

No description

Parameters

$name

Return Value

MethodReflection

at line 322
array getMethods($filter = -1)

No description

Parameters

$filter

Return Value

array

at line 334
static array getClassesAndTraits(string $class)

return string[]

Parameters

string $class

Return Value

array

Traits

Strict class for better experience.