| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\plugins\food;
- /**
- * 插件方法初始化操作(后续有需要绑定方法统一在此进行绑定操作)
- * Class PluginInit
- * @package app\plugins\food
- */
- class PluginInit
- {
- private static $validRoute = [
- ];
- /**
- * 绑定事件
- * @param array $args
- */
- public static function init(array $args) {
- }
- }
|