| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?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;
- }
- }
|