Files
shop-platform/src/app/event/init/AppEnd.php
2025-12-02 15:36:42 +08:00

16 lines
204 B
PHP

<?php
namespace app\event\init;
/**
* 应用结束
*/
class AppEnd
{
// 行为扩展的执行入口必须是run
public function handle()
{
return success();
}
}