Common.php 260 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: chengxun
  5. * Date: 2018/5/14
  6. * Time: 17:48
  7. */
  8. namespace app\index\controller;
  9. use think\Controller;
  10. class Common extends Controller
  11. {
  12. public function _initialize()
  13. {
  14. parent::_initialize();
  15. }
  16. }