Server.php 344 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. *
  4. * @copyright ©2020 点小铺
  5. * @author hanj
  6. * @link: https://dyuit.com
  7. * Created by VSCode
  8. */
  9. namespace app\common\library\sms\engine;
  10. abstract class Server
  11. {
  12. protected $error;
  13. /**
  14. * 返回错误信息
  15. * @return mixed
  16. */
  17. public function getError()
  18. {
  19. return $this->error;
  20. }
  21. }