Frontend.php 703 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * lemocms
  4. * ============================================================================
  5. * 版权所有 2018-2027 lemocms,并保留所有权利。
  6. * 网站地址: https://www.lemocms.com
  7. * ----------------------------------------------------------------------------
  8. * 采用最新Thinkphp6实现
  9. * ============================================================================
  10. * Author: yuege
  11. * Date: 2019/9/21
  12. */
  13. namespace app\common\controller;
  14. use app\BaseController;
  15. use think\facade\Request;
  16. use think\facade\Cookie;
  17. class Frontend extends BaseController
  18. {
  19. public function initialize()
  20. {
  21. parent::initialize(); // TODO: Change the autogenerated stub
  22. }
  23. }