42 public static function create( $msg, $code =
null, array $data =
null ) {
43 if ( is_array( $msg ) ) {
45 if ( isset( $msg[
'message'] ) ) {
46 if ( isset( $msg[
'params'] ) ) {
47 $msg = array_merge( [ $msg[
'message'] ], $msg[
'params'] );
49 $msg = [ $msg[
'message'] ];
76 public function __construct( $msg, $code =
null, array $data =
null ) {
77 if ( $msg instanceof
Message ) {
78 foreach ( get_class_vars( get_class( $this ) ) as
$key => $value ) {
79 if ( isset( $msg->$key ) ) {
80 $this->
$key = $msg->$key;
83 } elseif ( is_array( $msg ) ) {
84 $key = array_shift( $msg );
85 parent::__construct(
$key, $msg );
87 parent::__construct( $msg );
setApiCode( $code, array $data=null)
Extension of Message implementing IApiMessage @newable.
static create( $msg, $code=null, array $data=null)
Create an IApiMessage for the message.
__construct( $msg, $code=null, array $data=null)
Extension of RawMessage implementing IApiMessage @newable.
The Message class deals with fetching and processing of interface message into a variety of formats.
string $key
The message key.
Variant of the Message class.
trait ApiMessageTrait
Trait to implement the IApiMessage interface for Message subclasses.
Interface for messages with machine-readable data for use by the API.