PluginInit.php 531 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\plugins\adopt;
  8. /**
  9. * 插件方法初始化操作(后续有需要绑定方法统一在此进行绑定操作)
  10. * Class PluginInit
  11. * @package app\plugins\food
  12. */
  13. class PluginInit
  14. {
  15. private static $validRoute = [
  16. ];
  17. /**
  18. * 绑定事件
  19. * @param array $args
  20. */
  21. public static function init(array $args) {
  22. }
  23. }