45 public static function create( $msg, $code =
null, array $data =
null ) {
46 if ( is_array( $msg ) ) {
48 if ( isset( $msg[
'message'] ) ) {
49 if ( isset( $msg[
'params'] ) ) {
50 $msg = array_merge( [ $msg[
'message'] ], $msg[
'params'] );
52 $msg = [ $msg[
'message'] ];
79 public function __construct( $msg, $code =
null, array $data =
null ) {
80 if ( $msg instanceof
Message ) {
81 foreach ( get_class_vars( get_class( $this ) ) as
$key => $value ) {
82 if ( isset( $msg->$key ) ) {
83 $this->
$key = $msg->$key;
86 } elseif ( is_array( $msg ) ) {
87 $key = array_shift( $msg );
88 parent::__construct(
$key, $msg );
90 parent::__construct( $msg );
setApiCode( $code, array $data=null)
Extension of Message implementing IApiMessage.
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.
The Message class deals with fetching and processing of interface message into a variety of formats.
string $key
The message key.
trait ApiMessageTrait
Trait to implement the IApiMessage interface for Message subclasses.
Interface for messages with machine-readable data for use by the API.