截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Server.php 273B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\common\server\sms\engine;
  3. class Server
  4. {
  5. /**
  6. * 错误信息
  7. * @var
  8. */
  9. protected $error;
  10. /**
  11. * 返回错误信息
  12. * @return mixed
  13. */
  14. public function getError()
  15. {
  16. return $this->error;
  17. }
  18. }