IndexController.class.php 318 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace M\Controller;
  3. use Common\Controller\MBaseController as Base;
  4. /**
  5. * 首页
  6. * @author: linch
  7. * Class IndexController
  8. * @package M\Controller
  9. */
  10. class IndexController extends Base
  11. {
  12. /**
  13. * 首页
  14. * @author: linch
  15. */
  16. public function index(){
  17. $this->display();
  18. }
  19. }