IndexBase.php 375 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: yckj_lzj
  5. * Date: 2020-05-21
  6. * Time: 11:49
  7. */
  8. namespace app\index\controller;
  9. /**
  10. * 自己实现的控制器基类,建议需要用到token的控制器继承
  11. * Class IndexBase
  12. * @package app\index\controller
  13. */
  14. class IndexBase extends Base
  15. {
  16. public function __construct()
  17. {
  18. parent::__construct();
  19. }
  20. }