| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace addons\WechatVideoShop\common\expand\sdk\weixin;
- interface RequestInterface
- {
- /**
- * @param ModelInterface|null $model
- * @return RequestInterface
- */
- public function send(ModelInterface $model = null);
- /**
- * @return string
- */
- public function getError();
- /**
- * @return string
- */
- public function respError();
- /**
- * @return array
- */
- public function toArray();
- /**
- * @return RequestInterface
- */
- public function accessToken();
- public function getRawContent();
- }
|