메소드 |
설명 |
|
__construct ( string | integer $index = null ) : void |
Constructs a new signal. |
|
__get ( mixed $key ) : mixed | null |
Get a variable in the signal. |
|
__isset ( mixed $key ) : boolean |
Checks for a variable in the signal. |
|
__set ( string $key, mixed $value ) : boolean |
Set a variable in the signal. |
|
__toString ( ) : string |
String representation. |
|
__unset ( mixed $key ) : boolean |
Deletes a variable in the signal. |
|
compare ( SIG $sig ) : boolean |
Compare if the given $sig is identical to this. |
|
get_index ( ) : boolean |
Returns the signal index. |
|
get_parent ( ) : null | object |
Retrieves this signal's parent. |
|
halt ( ) : void |
Halts the signal execution. |
|
is_child ( ) : boolean |
Determines if the signal is a child of another signal. |
|
set_parent ( SIG $signal ) : void |
Sets the parent signal. |
|