Server.php 235 B

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