admin/addon/bundling/event/UnInstall.php

31 lines
730 B
PHP

<?php
/**
* ThinkShop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 成都云之牛科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.cdcloudshop.com
* =========================================================
*/
namespace addon\bundling\event;
/**
* 应用卸载
*/
class UnInstall
{
/**
* 执行卸载
*/
public function handle()
{
try {
execute_sql('addon/bundling/data/uninstall.sql');
return success();
} catch (\Exception $e) {
return error('', $e->getMessage());
}
}
}