Method |
Description |
|
__construct ( $extraParams ) |
Jsonable constructor. |
|
__get ( $name ) : mixed |
is utilized for reading data from inaccessible members. |
|
__toString ( ) : string |
The __toString method allows a class to decide how it will react when it is converted to a string. |
|
has ( $name ) : boolean |
Check if the extra param
exists. |
|
isJson ( $value ) : boolean |
Check if the value
is a json string. |
|
jsonSerialize ( ) : array |
Convert the object into something JSON serializable. |
|
offsetExists ( mixed $offset ) : boolean |
Whether a offset exists. |
|
offsetGet ( mixed $offset ) : mixed |
|
|
offsetSet ( mixed $offset, mixed $value ) |
|
|
offsetUnset ( mixed $offset ) |
|
|
toArray ( ) : array |
|
|
toJson ( integer $options ) : string |
Convert the model instance to JSON. |
|