截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }