mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-04-08 13:40:24 +00:00
111 lines
1.8 KiB
PHP
111 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the overtrue/wechat.
|
|
*
|
|
* (c) overtrue <i@overtrue.me>
|
|
*
|
|
* This source file is subject to the MIT license that is bundled
|
|
* with this source code in the file LICENSE.
|
|
*/
|
|
|
|
/**
|
|
* AbstractMessage.php.
|
|
*
|
|
* @author overtrue <i@overtrue.me>
|
|
* @copyright 2015 overtrue <i@overtrue.me>
|
|
*
|
|
* @see https://github.com/overtrue
|
|
* @see http://overtrue.me
|
|
*/
|
|
|
|
namespace EasyWeChat\Message;
|
|
|
|
use EasyWeChat\Support\Attribute;
|
|
|
|
/**
|
|
* Class AbstractMessage.
|
|
*/
|
|
abstract class AbstractMessage extends Attribute
|
|
{
|
|
/**
|
|
* Message type.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $type;
|
|
|
|
/**
|
|
* Message id.
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* Message target user open id.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $to;
|
|
|
|
/**
|
|
* Message sender open id.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $from;
|
|
|
|
/**
|
|
* Message attributes.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $properties = [];
|
|
|
|
/**
|
|
* Return type name message.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getType()
|
|
{
|
|
return $this->type;
|
|
}
|
|
|
|
/**
|
|
* Magic getter.
|
|
*
|
|
* @param string $property
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function __get($property)
|
|
{
|
|
if (property_exists($this, $property)) {
|
|
return $this->$property;
|
|
}
|
|
|
|
return parent::__get($property);
|
|
}
|
|
|
|
/**
|
|
* Magic setter.
|
|
*
|
|
* @param string $property
|
|
* @param mixed $value
|
|
*
|
|
* @return AbstractMessage
|
|
*/
|
|
public function __set($property, $value)
|
|
{
|
|
if (property_exists($this, $property)) {
|
|
$this->$property = $value;
|
|
} else {
|
|
parent::__set($property, $value);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
}
|