This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/common/library/sms/engine/Server.php
2020-04-25 22:20:29 +08:00

20 lines
235 B
PHP

<?php
namespace app\common\library\sms\engine;
abstract class Server
{
protected $error;
/**
* 返回错误信息
* @return mixed
*/
public function getError()
{
return $this->error;
}
}