46 lines
894 B
PHP
46 lines
894 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | YwxApp [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ywxapp<admin@ywxapp.cn>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types = 1);
|
|
|
|
namespace addon\smssend;
|
|
|
|
use ywxapp\AddonBase;
|
|
|
|
/**
|
|
* Addon 类
|
|
*
|
|
* @author ywxapp <admin@ywxapp.cn>
|
|
*/
|
|
class Addon extends addon
|
|
{
|
|
|
|
public function install()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
public function uninstall()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
public function enable()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
public function disable()
|
|
{
|
|
return true;
|
|
}
|
|
}
|